Exploring Hindu Nationalism Discourse on Reddit through Text Analysis

Author

Ananya Pujary

# setup chunk
library("RedditExtractoR")
library("tidyverse")
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.4
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.4.4     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.0
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library("ggplot2")
library("quanteda")
Package version: 3.3.1
Unicode version: 14.0
ICU version: 71.1
Parallel computing: 8 of 8 threads used.
See https://quanteda.io for tutorials and examples.
library("quanteda.textplots")
library("skimr")
library("textdata")
library("stm")
stm v1.3.7 successfully loaded. See ?stm for help. 
 Papers, resources, and other materials at structuraltopicmodel.com
library("quanteda.dictionaries")
library("quanteda.sentiment")

Attaching package: 'quanteda.sentiment'

The following object is masked from 'package:quanteda':

    data_dictionary_LSD2015
library("patchwork")
library("dplyr")
library("tidytext")

Literature Review

One of my motivations for this project is the increasing Hindu nationalistic sentiment in India. Hindu nationalism can be defined as “the collection of political thought that is spiritually underpinned by the Hindu religious and cultural traditions of India. It is important to note, as various authors point out, Hindu nationalism is not the same as Hinduism” (Siyech, 2021, p. 2). It designates Hindus as the in-group and Dalits, Muslims, and secular liberals as the out-group. At the root of Hindu nationalism is the Hindutva ideology, which “conflates geographically based cultural, national, and religious identities that focus on the manifestation of Hinduness” (Siyech, 2021, p. 2).

Historically, several events that occurred in the 70s-80s caused the strengthening of Hindu right-wing sentiments. Many right-wing publications propagated the idea that “Hindus are in danger of being overtaken by the Muslims” (Siyech, 2021, p. 5). Tensions reached a crescendo with the demolition of the Babri Mosque in 1992 (Siyech, 2021). Following this, the right-wing Bharatiya Janata Party (BJP) came to power between 1998-2004, and experienced a resurgence in support a decade after. Several factors contributed to this rise of right-wing extremism: 1) corruption within the left-wing Congress party, 2) failure of left-wing politics in India, 3) Islamist extremism in South Asia, 4) global rise of ethno-nationalism, 5) silence from the leaders, and 6) the internet’s role in facilitating this extremism by creating echo chambers (Siyech, 2021).

While the Indian government has taken steps to ban several social media channels for spreading fake political news, there has been a major growth in channels promoting extremist and nationalist views (M. N., 2023). These extremist views are manifesting in the real world too. Statistics from Hate Crime Watch showed that “91 percent of the hate crimes that have been documented in the past decade have occurred since the Modi government came to power, that is, 99 deaths and 703 wounded between May 2014 and April 2019 in crimes motivated by religious hatred (mostly of Muslims)” (Siyech, 2021, p. 3).

While Reddit is the third most used social media platform in India after Facebook and Instagram, there is limited research based on the platform’s data (Saraswat, 2022). Reddit had 3.57 million users in India in 2020 according to Statista, though it is only a fraction of other platforms of Instagram and Facebook, which are used by a staggering 349 million and 201 million users respectively (Saraswat, 2022). The structure of Reddit also varies greatly from the other two platforms, with the presence of subreddit moderators responsible for monitoring that space, rewards for discussion participation encouraging greater community engagement, and the anonymity it affords. Moderators from the r/India subreddit, the largest one pan-India, expressed their concerns with “the ineptness of the Reddit administration to understand the abuses or comments made in languages other than English” (Saraswat, 2022). They also reported a surge in hate towards minorities, primarily Muslims, Dalits, and Sikhs (Saraswat, 2022).

Hence, based on the literature identified above, this project aims to fill the gap of Reddit-based insights using text analysis methods, specifically as related to growing trends of Hindu nationalism in India.

Research Questions

  1. What are the dominant themes discussed in prominent Indian subreddits related to the Hindutva ideology?
  2. What are the dominant sentiments of users discussing the Hindutva ideology on Indian subreddits?
  3. Do some Indian subreddits engage in more extreme discussions of the Hindutva ideology than others?

Hypotheses

  1. Some dominant themes that are discussed in Indian subreddits are related to fear of other religions, especially of Islam, and the promotion of Hindu nationalistic practices, such as cow worship.
  2. The dominant sentiments in these Indian subreddits will be negative in relation to other religions and positive in relation to Hinduism.
  3. Larger Indian subreddits will display a more neutral sentiment overall in their posts than smaller subreddits.

Methodology and Data Collection

This project uses text analysis methods suitable for identifying frequently used terms in subreddit discussions. In particular, I’ve chosen to do a sentiment analysis of how people discuss topics related to Hindu nationalism. Topic modelling would add nuance to this analysis by identifying frequently mentioned themes and topics. I used scraped data from select subreddits (r/India and r/HindutvaRises) to answer my research question using the RedditExtractoR package. The posts on r/India cover broad topics such as politices, science and technology, finance, policy, and etiquette on the platform. Since there is a lack of literature on Reddit-based analysis of this topic, I consulted existing Reddit discussions listing the most extreme Indian subreddits, one of which was r/HindutvaRises (see https://www.reddit.com/r/unitedstatesofindia/comments/tl2fcp/rchodi_is_ded/?rdt=60857). r/India is the biggest Indian subreddit, and r/HindutvaRises is much smaller with a narrower focus. I’ve chosen to compare these subreddits to understand whether the levels of extremism and sentiment differ by the size of the subreddit. The data used were collected on December 8th using the timeframe of a month sorted by newer posts, and so is cross-sectional data in nature.

Collecting the required data from Reddit:

# hindutvarises
# collecting data from r/HindutvaRises
# thread_hindutvarises <- find_thread_urls(subreddit="hindutvarises", sort_by="new", period="month")

# combine 'title' and 'text' columns with blank separator 
# thread_hindutvarises$title_text = paste(thread_hindutvarises$title, thread_hindutvarises$text, sep=" ")

# save as csv
# write.csv(thread_hindutvarises,file='/Users/ananyapujary/Desktop/DACSS/DACSS758/DACSS758/hindutvarisespost.csv', row.names=FALSE)

# india
# thread_india <- find_thread_urls(subreddit="india", sort_by="new", period="month")

# combine 'title' and 'text' columns with blank separator 
# thread_india$title_text = paste(thread_india$title, thread_india$text, sep=" ")

# save as csv
# write.csv(thread_india,file='/Users/ananyapujary/Desktop/DACSS/DACSS758/DACSS758/indiapost.csv', row.names=FALSE)

Skimming the dataset of comments from r/HindutvaRises and r/India:

hindutvarises <- read.csv("hindutvarisespost.csv")
str(hindutvarises)
'data.frame':   924 obs. of  8 variables:
 $ date_utc  : chr  "2022-03-19" "2022-03-18" "2022-03-18" "2022-03-15" ...
 $ timestamp : int  1647689618 1647601918 1647577014 1647305454 1647257140 1647069338 1647032095 1645330940 1645212184 1644990210 ...
 $ title     : chr  "Police jihad in Bengal" "We will always win" "Sab Dekhenge" "[LawbeatInd] Uttarakhand HC uploads order denying bail to Waseem Rizvi in the HaridwarDharamSansad case.There a"| __truncated__ ...
 $ text      : chr  "" "" "" "" ...
 $ subreddit : chr  "HindutvaRises" "HindutvaRises" "HindutvaRises" "HindutvaRises" ...
 $ comments  : int  3 7 9 0 79 4 0 16 2 7 ...
 $ url       : chr  "https://www.reddit.com/r/HindutvaRises/comments/thtbq1/police_jihad_in_bengal/" "https://www.reddit.com/r/HindutvaRises/comments/tgyxi9/we_will_always_win/" "https://www.reddit.com/r/HindutvaRises/comments/tgszjn/sab_dekhenge/" "https://www.reddit.com/r/HindutvaRises/comments/teciol/lawbeatind_uttarakhand_hc_uploads_order_denying/" ...
 $ title_text: chr  "Police jihad in Bengal " "We will always win " "Sab Dekhenge " "[LawbeatInd] Uttarakhand HC uploads order denying bail to Waseem Rizvi in the HaridwarDharamSansad case.There a"| __truncated__ ...
skim(hindutvarises)
Data summary
Name hindutvarises
Number of rows 924
Number of columns 8
_______________________
Column type frequency:
character 6
numeric 2
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
date_utc 0 1 10 10 0 427 0
title 0 1 0 307 1 915 0
text 0 1 0 6040 753 172 0
subreddit 0 1 13 13 0 1 0
url 0 1 57 107 0 924 0
title_text 0 1 1 6078 0 917 1

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
timestamp 0 1 1.680811e+09 14973638.97 1641937164 1675476346 1684239116 1691261354 1701968219 ▂▂▂▇▇
comments 0 1 3.090000e+00 7.54 0 1 1 3 159 ▇▁▁▁▁
india <- read.csv("indiapost.csv")
str(india)
'data.frame':   747 obs. of  8 variables:
 $ date_utc  : chr  "2023-11-27" "2023-11-27" "2023-11-27" "2023-11-27" ...
 $ timestamp : int  1701096951 1701095266 1701092472 1701089321 1701084272 1701082188 1701081406 1701073900 1701072621 1701071480 ...
 $ title     : chr  "Big fat weddings are India's soft power abroad, just like Bollywood. Don't stop this export" "Collapsed Indian tunnel had no safety exit, was built through geological fault - panel member" "Bengaluru airport won't ask you to put gadgets in plastic trays. Here's why" "NDTV: Class 4 Boys Attack Classmate With Compass 108 Times After Fight At School" ...
 $ text      : chr  "" "" "" "W.T.F is happening in Indian Schools????" ...
 $ subreddit : chr  "india" "india" "india" "india" ...
 $ comments  : int  102 21 44 104 0 3 172 2 9 2 ...
 $ url       : chr  "https://www.reddit.com/r/india/comments/1854t1k/big_fat_weddings_are_indias_soft_power_abroad/" "https://www.reddit.com/r/india/comments/18546p2/collapsed_indian_tunnel_had_no_safety_exit_was/" "https://www.reddit.com/r/india/comments/18537t3/bengaluru_airport_wont_ask_you_to_put_gadgets_in/" "https://www.reddit.com/r/india/comments/18527sq/ndtv_class_4_boys_attack_classmate_with_compass/" ...
 $ title_text: chr  "Big fat weddings are India's soft power abroad, just like Bollywood. Don't stop this export " "Collapsed Indian tunnel had no safety exit, was built through geological fault - panel member " "Bengaluru airport won't ask you to put gadgets in plastic trays. Here's why " "NDTV: Class 4 Boys Attack Classmate With Compass 108 Times After Fight At School W.T.F is happening in Indian Schools????" ...
skim(india)
Data summary
Name india
Number of rows 747
Number of columns 8
_______________________
Column type frequency:
character 6
numeric 2
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
date_utc 0 1 10 10 0 13 0
title 0 1 8 298 0 744 0
text 0 1 0 7522 302 446 0
subreddit 0 1 5 5 0 1 0
url 0 1 57 99 0 747 0
title_text 0 1 12 7598 0 745 0

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
timestamp 0 1 1.701495e+09 274816.35 1700973330 1701265358 1701484470 1701745201 1702014822 ▅▇▇▆▅
comments 0 1 3.576000e+01 113.65 0 1 4 19 1574 ▇▁▁▁▁

hindutvarises has 8 columns (6 character and 2 numeric) and 924 rows, and india has 8 columns (6 character and 2 numeric) and 747 rows.

Data Cleaning and Exploration

Looking at the token distribution in the corpora created:

require(readtext)
Loading required package: readtext

Attaching package: 'readtext'
The following object is masked from 'package:quanteda':

    texts
# hindutvarises
hindutvarises_corpus <- corpus(hindutvarises, text_field = "title_text") 

hindutvarises_summary <- summary(hindutvarises_corpus)
hindutvarises_summary
Corpus consisting of 924 documents, showing 100 documents:

    Text Types Tokens Sentences   date_utc  timestamp
   text1     4      4         1 2022-03-19 1647689618
   text2     4      4         1 2022-03-18 1647601918
   text3     2      2         1 2022-03-18 1647577014
   text4    40     47         1 2022-03-15 1647305454
   text5    19     20         1 2022-03-14 1647257140
   text6     5      7         1 2022-03-12 1647069338
   text7    10     14         2 2022-03-11 1647032095
   text8     5      5         1 2022-02-20 1645330940
   text9    16     21         1 2022-02-18 1645212184
  text10    24     26         1 2022-02-16 1644990210
  text11    29     34         2 2022-02-13 1644712889
  text12     5      5         1 2022-02-11 1644606337
  text13   128    209         7 2022-02-07 1644261138
  text14    18     19         1 2022-02-04 1643961669
  text15     4      4         1 2022-01-26 1643178671
  text16    14     17         1 2022-01-25 1643087624
  text17     5      6         1 2022-01-23 1642918845
  text18    69     90         6 2022-01-19 1642587276
  text19    19     20         1 2022-01-16 1642322472
  text20     2      2         1 2022-01-16 1642309500
  text21     5      6         2 2022-01-15 1642239092
  text22    13     17         3 2022-01-15 1642215827
  text23     0      0         0 2022-01-14 1642149876
  text24    24     47         2 2022-01-11 1641937164
  text25    20     29         1 2022-07-04 1656942739
  text26    18     39         6 2022-07-04 1656911586
  text27   118    195        11 2022-07-04 1656898801
  text28     4      4         1 2022-07-03 1656847527
  text29   126    202         7 2022-07-03 1656843903
  text30     8      8         1 2022-07-03 1656823640
  text31   269    773        43 2022-07-02 1656777269
  text32     9      9         1 2022-07-02 1656769186
  text33     6      7         1 2022-07-01 1656699359
  text34     7      7         2 2022-07-01 1656698050
  text35     5      6         1 2022-07-01 1656687408
  text36     5      5         1 2022-07-01 1656676017
  text37    26     30         2 2022-06-28 1656413967
  text38     2      2         1 2022-06-27 1656354651
  text39     1      4         1 2022-06-27 1656354470
  text40     9      9         2 2022-06-27 1656331093
  text41   179    329        13 2022-06-25 1656195035
  text42    55     93         4 2022-06-25 1656147207
  text43     9      9         1 2022-06-16 1655407487
  text44     5      5         1 2022-06-14 1655178284
  text45     4      4         1 2022-06-12 1655054574
  text46    25     29         1 2022-06-12 1655026939
  text47     7      7         1 2022-06-10 1654886541
  text48     8      8         1 2022-06-10 1654866314
  text49     7      7         1 2022-06-10 1654858829
  text50     5      5         1 2022-06-10 1654833544
  text51     7      7         1 2022-06-09 1654786038
  text52     8     10         1 2022-06-07 1654636860
  text53    98    147         6 2022-06-07 1654577223
  text54   287    559        19 2022-06-06 1654481882
  text55     4      4         1 2022-06-05 1654454482
  text56    12     14         1 2022-06-05 1654448369
  text57     2      2         1 2022-06-04 1654349830
  text58     5      5         1 2022-06-03 1654274291
  text59     8      9         1 2022-06-03 1654265435
  text60    17     18         1 2022-06-01 1654089746
  text61     5      6         1 2022-06-01 1654084163
  text62    45     64         4 2022-05-31 1653961917
  text63    10     10         1 2022-05-30 1653903027
  text64     1      1         1 2022-05-26 1653585644
  text65    28     29         2 2022-05-25 1653493125
  text66    24     27         2 2022-05-25 1653492815
  text67    41     72         1 2022-05-24 1653361222
  text68    19     19         1 2022-05-21 1653119674
  text69     3      3         1 2022-05-20 1653019823
  text70    25     59         9 2022-05-18 1652884205
  text71    34     73         8 2022-05-17 1652814448
  text72     7      7         1 2022-05-16 1652734503
  text73    30     34         2 2022-05-12 1652372063
  text74    11     11         1 2022-05-12 1652346534
  text75     5      5         1 2022-05-10 1652185553
  text76    89    135        14 2022-05-08 1652043900
  text77     7      8         1 2022-05-06 1651858996
  text78    43     57         3 2022-05-04 1651693570
  text79    16     17         1 2022-05-04 1651658169
  text80    43     55         3 2022-05-03 1651612635
  text81   182    282         7 2022-05-03 1651594192
  text82    79    133         8 2022-04-29 1651192465
  text83     6      6         1 2022-04-24 1650817988
  text84     6      6         1 2022-04-23 1650714321
  text85     8      8         1 2022-04-23 1650710989
  text86     4      4         1 2022-04-23 1650707825
  text87     2      2         1 2022-04-22 1650650502
  text88    10     10         1 2022-04-21 1650555667
  text89    10     10         1 2022-04-20 1650476736
  text90     7      7         1 2022-04-20 1650457648
  text91    34     39         3 2022-04-19 1650388074
  text92    13     15         1 2022-04-19 1650375768
  text93     5      5         1 2022-04-19 1650356164
  text94     1      2         1 2022-04-18 1650292829
  text95   155    246        12 2022-04-17 1650204691
  text96     6      7         1 2022-04-16 1650112558
  text97   139    265         8 2022-04-15 1650029572
  text98     6      6         1 2022-04-15 1650002739
  text99    24     24         2 2022-04-13 1649867713
 text100    13     14         1 2022-04-11 1649681057
                                                                                                                                                                                                                                                                                                        title
                                                                                                                                                                                                                                                                                       Police jihad in Bengal
                                                                                                                                                                                                                                                                                           We will always win
                                                                                                                                                                                                                                                                                                 Sab Dekhenge
 [LawbeatInd] Uttarakhand HC uploads order denying bail to Waseem Rizvi in the HaridwarDharamSansad case.There are huge derogatory remarks against particular religion;against Prophet.The Prophet has been abused;it intends to wound the religious feelings of persons belonging to a particular religion."
                                                                                                                                                                                                       [OLD] JNU Professor Nivedita Menon tells students "Hindu Society" is the most violent society in world
                                                                                                                                                                                                                                                                               Jai shri Ram, Jai shri Krishna
                                                                                                                                                                                                                             Never Forget! Never Forgive the perpetrators, the enablers and the whitewashers!
                                                                                                                                                                                                                                                                                    Jai Bhavani , jai shivaji
                                                                                                                                                                                                          Ram Setu is with Adams Bridge those days are not far where It is known as Adams Bridge AKA Ram Setu
                                                                                                                                                                A great tribute to our Great ancestors , they fought when they were given two options either convert or die , hope it inspires mordern hindus
                                                                                                                                                                                                                                   What is the main threat to traditional Hinduism and Hindu values in India?
                                                                                                                                                                                                                                                                                       Jaiiiiiii Shree Ram =©
                                                                                                                                                                                                                                                           Want opinions on these Hindu resources and methods
                                                                                                                                                                                                                 A must watch if you are a hindu ( gives knowledge about the things we forgot about hinduism)
                                                                                                                                                                                                                                                                                        Found this on YouTube
                                                                                                                                                                                                                              Why I killed Gandhi , do watch this movie ,congress is trying to ban this movie
                                                                                                                                                                                                                                                                                     One day for sure=\003=\v
                                                                                                                                                                                                      Darkest Day in the history of Independent India, 19th January,1990. 32 years of Kashmiri Hindus Exodus.
                                                                                                                                                                                        ED attaches asset worth Rs 48 lakh of journalist Rajeev Sharma, accused of passing confidential information to China!
                                                                                                                                                                                                                                                                                                 Secular Meme
                                                                                                                                                                                                                                                                                               \030A\030A$?/>
                                                                                                                                                                                                                                              "MUSLIMS RULED ENDIA FOR 800 YEARS1!!!1!" Yet we're still Hindu
                                                                                                                                                                                                                                                                                                             
                                                                                                                                                                                   Major subreddit that has connections to reddit admins spreading fake news and calling for DesiMeta and Chodi to be banned.
                                                                                                                                         No investigation, no chargesheet, no charge framing, no evidence verification, no trial, no argument direct Observation >\024, watch full details Source in comments
                                                                                                                                                                                                                  9?(M&B &G5@ &G5$>\023\002 \025@ +?0 9A\006 \005*.>( | \a$(@ 9?.M.$ \006$@ \0259>\001 8G 9H?
                                                                                                                                                                                                                                                                           We are leading to a good direction
                                                                                                                                                                                                                                                                                    From ig - @theangryvaanar
                                                                                                                                                                       2 years ago, I made a website on Hindu history, warriors, kings and battles. Do visit, support and give suggestions for improvement =O
                                                                                                                                                                                                                                                                Devki Nandan Thakur Ji Message to Every Hindu
                                                                                                                                                                                                                                                          27 points which describe the uniqueness of Hinduism
                                                                                                                                                                                                                                                  When Shivsena challenged a muslim to recite Hanuman Chalisa
                                                                                                                                                                                                                                                                                             so be it=á\017=Õ
                                                                                                                                                                                                                                                                                 \005\002$ 9@ \017\0050.M- 9H
                                                                                                                                                                                                                                                                             please share as much as possible
                                                                                                                                                                                                                                                                                              Waah my lord =O
                                                                                                                                                                                  Such illiteracy and dumbness that ever answer is "NO".When he ask do you love india twice, first they say no, and then yes.
                                                                                                                                                                                                                                                                                             Mudiji Supremacy
                                                                                                                                                                                                                                                                                                         ....
                                                                                                                                                                                                                                                                   JAI HANUMAN! Check comment for insta link.
                                                                                                                                                       Found a true Kaurava - Bulla u/Kareba1614 trying to defame Hinduism by using wrong interpretation of Hinduism and using devil interpretations of texts
                                                                                                                                                                                                I have created a new subreddit called r/ABCIndianHindus for Hindus born and raised Overseas or living abroad!
                                                                                                                                                                                                                                                             Lord Indra Supremacy check comment for more vid.
                                                                                                                                                                                                                                                                                           Om namah shivay =O
                                                                                                                                                                                                                                                                                               made it today!
                                                                                                           Palestinian Islamic Scholar Nidhal Siam at Al-Aqsa Mosque Rally: The Only Response to the \034Cow-Worshipping\035 Hindus\031 Affront to the Prophet Muhammad is to Declare Jihad to Eradicate Them
                                                                                                                                                                                                                                                                  Hindus have more children for Hindu rashtra
                                                                                                                                                                                                                                                       Hanuman mandir after stone pelting in Ranchi Jharkhand
                                                                                                                                                                                                                                                                          Stone pelting in Ranchi (Jharkhand)
                                                                                                                                                                                                                                                                                    I support Nupur Sharma ji
                                                                                                                                                                                                                                                                               not oc ( Ig - @theangryvaanar)
                                                                                                                                                                                                                                                                              Made it today =©Jai Shri Ram =©
                                                                                                                                                                                                                                                                               This reddit is so out of touch
                                                                                                                                                                                                                                         What's plan B for Hindus? Andhra is already more than 25% Christian.
                                                                                                                                                                                                                                                                                         Remove mat karna bas
                                                                                                                                                                                                                                                                                           About caste system
                                                                                                                                                                                                                                                                                                    UP Police
                                                                                                                                                                                                                                                                               Atal Bihari Vajpayee thug Life
                                                                                                                                                                                                                                                                                        Honour Your ancestors
                                                                                                                                                                                                                Good Muslim or Bad Muslim koo Leaker Sabmit Patra ne Bajai Hindu ke Khilaf bolne wale ki band
                                                                                                                                                                                                                                                                              Hindu Sikh boi boi on clubhouse
                                                                                                                                                                                                           If you don't teach your kids to be extremely proud of being Hindu, they won't end up Hindu at all.
                                                                                                                                                                                                                                    Writing Competition and Mentorship Program | The Sarasvati Sangam Project
                                                                                                                                                                                                                                                                                                        title
                                                                                                                                       Turkey; Pakistani refugees harassing women and taking videos of them without their knowledge was arrested by the Turkish police. He will be deported back to Pakistan.
                                                                                                                                                            Turkey; Pakistani "refugee" getting beaten up and spit upon by girl. The Pakistani was apparently taking pictures of the girl without her knowing
                                                                                                                                                                                                                                                                     r/ExMuslim, r/ExChristian, and r/ExHindu
                                                                                                                                                                                                         Yogi AAdityanaath ne btya kii jab Uttar Pradesh me Cycle ki Sarkar thii Tab Saadhuo ke saath kya hua
                                                                                                                                                                                                                                                                                           atleast watch this
                                        Panch Mukha Sadashiva, ... Five faces of Sadashiva ... Sadashiva ... Virat Parabrahman Sadashiva ... Virat Shiva ... Bhagwan Vishvakarman ... Sriman Naaraayana ... Shunya Brahman ... That zero which is infinite and simultaneously that infinite which is zero ...
 Regarding OM Nada, ... Sound of AUM, ... Sound of Omkar, ... Pranava, Lord of macrocosmic vitality, ... Akshar, The indestructible one, ... Mahamantra, Universal verse within and beyond each Microcosm, ... Brahmalingam, Symbol of Brahman, ... Atman, The innermost essence of allness and her each part
                                                                                                                                                                                                                                                                           Regarding Brahman (IT or Absolute)
                                                                                                                                                                                   Can someone give me strong facts and arguments for why secularism should be removed &amp; India should be a hindu rashtra?
                                                                                                                                                                                                                                                From - The Angry Vaanar ( additional information in comments)
                                                                                                                                                                                                                                                                                           did you know that?
                                                                                                                                                                                                                                                                Why I don't like Modi (and I'm not a libtard)
                                                                                                                                                                                                                                                                               Duggal sahab to pappu nikle!!?
                       A Turkish citizen of Armenian origin in a bus. He is claiming that 'our country is being invaded by Pakistanis, Afghans and Syrians', calling out Turkish citizens to raise their voice and to resist 'the invasion'. Some weeks ago, his sister was harassed by Pakistanis in Turkey.
                                                                                                                                                                                                                    Pakistani refugee in Turkey/Istanbul filming a woman on a boat and uploading it to TikTok
                                Turkey; Pakistani ""refugees"" taking pictures of little girls and women in the streets getting exposed by a brave female. She took the phone out of their hands and deleted the pictures. The video was watched 600K times, liked 25K and shared 8000 times on social media.
                                                                                                                                                                                                                                                                 some fallacy in religious scripture of Islam
                                                                                                                                                                                                                                                                                      Hindu don't speak Hindi
                                                                                                                                                                                                                                                                               just dont mess with true power
                                                                                                                                                                                                                                                                         Milards like this meme, unironically
                                                                                                                                                                                                                                                              Hanuman chalisa - Everyday 7 times without fail
                                                                                                                                                                                                                                                                                     kindly support this guys
                                                                                                                                                                                                                                                                                                   Thoughts ?
                                                                                                                                                                                                                                                                    Why cant I find any Help line for Hindus?
                                                                                                                                                                                                                                                      secoolar india vroo. everyone is subject to free speech
                                                                                                                                                                                                                                                                                  I am not gonna vote for bjp
                                                                                                                                       Big Braking : Video of the exact moment when Hanuman Shobha Yatra was attacked in front of Mosque. No attempt was made to hoist =© flag. Share as much as you can =O<ý
                                                                                                                                                                                                                                  Akbar and Birbal join the SaveSoil Movement - See the Funny Video and Join!
                                                                                                                                                                                                                                                                                    Mkc secular hindu\031s ki
                                                                                                                                                                                                                                                                                               =\u0080=\u0080
                                                                                                                                                                                                                                                                                         Bjp is our last hope
                                                                                                                                                                                                                                                                               Pav bhaji Khao, bhaji pav nahi
                                                                                                                                                                                                                                                                                            what do you think
                                                                                                                                                                                                                                                                                  Is there even any solution?
                                                                                                                                                                        Join r/indianJihadiWatch to spread awareness about crimes against Hindus . Lets create a strong pro hindu ecosystem here on reddit =©
                                                                                                                                                                                                                                         Pakistan is not a place it's a Thought seen in Muslim Areas In India
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If you had to name one thing that you believe puts Hindutva under threat, what would that be?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Himalayan Academy provides this guide for non-Hindus to become Hindu: [https://www.himalayanacademy.com/view/how-to-become-a-hindu](https://www.himalayanacademy.com/view/how-to-become-a-hindu).\n\nIt lays out six steps: 1) joining a Hindu community; 2) creating a point-counterpoint of the beliefs of Hinduism and one's previous religion; 3) severing from former mentors; 4) legally adopting a Hindu name; 5) having a namakarana samskara, the traditional Hindu name-giving ceremony and 6) publicly announcing the severance and name change.\n\nAdditionally, I found an article of a man who followed such guidance and discusses in specific the namkaran implications:\n\n[https://www.hinduismtoday.com/magazine/apr-may-jun-2021/whats-your-real-name/](https://www.hinduismtoday.com/magazine/apr-may-jun-2021/whats-your-real-name/)\n\nI wanted to know your opinions of the Himalayan Academy's methods. I think it is good to support those who are curious in becoming Hindu by doing so properly and respectfully. I think having these steps deters laypersons who may only want to go by the label of Hindu for clout and what not. Is this method of 'conversion' something we, the broader Hindu community, should support?\n\nMay be important to add that the Himalayan Academy supports only non-forced conversions.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "Convert, die or leave!" \n32 years today that threat by Islamists hit #KashmiriHindus like a tsunami.\nAbduction, gangrape &amp; murder became commonplace till their genocide &amp; exodus from Kashmir was complete.\nLook it up, read about it, stand by this community for Justice=O<û Never Forget Never Forgive! =©=I
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   [Major subreddit that has connections to reddit admins](https://www.reddit.com/r/neoliberal/comments/s1erqi/reddit_allows_hate_speech_to_flourish_in_its/) spreading fake news and calling for DesiMeta and Chodi to be banned.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Namaste to all the hindutvaadis,\n\n\nFace it or not, this has been a tough period for us. Kanhaiya Lal's case lead me to severe sadness, while our subreddits were heavily attacked by these Bullas, but I believe we are going strong.\n\nRecently, I have been observing the bullas who have been masquerading among us lurking in our group, and I did the same. For the past 1 month, I have been observing that these Bullas are clutching to everything they can to hold their stupid ideology.\n\n\nSee these posts below:\n\nhttps://www.reddit.com/r/EXHINDU/comments/vly4aa/journalist_mohammed_zubair_of_altnews_arrested/?utm_medium=android_app&amp;utm_source=share\n\nhttps://www.reddit.com/r/EXHINDU/comments/rk1rzf/regarding_kaaba_in_islam/?utm_medium=android_app&amp;utm_source=share\n\nhttps://www.reddit.com/r/EXHINDU/comments/vmk7hl/the_sanghs_dream_of_a_hindu_rashtra_is_not_even/?utm_medium=android_app&amp;utm_source=share\n\nhttps://www.reddit.com/r/EXHINDU/comments/vj4m5b/why_did_you_leave_hinduism/?utm_medium=android_app&amp;utm_source=share\n\n\nThese guys have been trying hard to defame us, defame our religion, but they haven't been able to.\n\nAll I want to express is that we should stay true to our roots, and trust lord Krishna ji and lord Ram ji into giving us mental strength to be able to face any problems with braveness and good response.\n\nJai ho.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Dharmayudh ](https://dharmayudh.com/), a website made by me and my friend on Hindu millitary history has completed 2 years. Have posted articles on Marathas, Rajputs, Sikhs and every other small and big group and their history of bravery and sacrifice that has been not given importance in secular democratic India.\n\nIt was hard in the beginning but now We receive almost 500 organic daily visitors and have a small following on instagram too( 1900).\n\nWould mean a lot if you can support us by any means , donations of any small amount from the link in website are welcomed by Only those who can afford it . Rest can do the following things:\n\nTurn on notifications for the website on your browser ( by clicking allow on the pop-up when it comes when you visit the website)\n\nFollow us on instagram ( dharmayudh\\_com)\n\nShare our website and instagram in your WhatsApp groups etc.\n\nJai Bhavani !
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 1) Believe in God ! - Aastik - Accepted\n\n&amp;#x200B;\n\n2) Don't believe in God ! - You're accepted as Nastik\n\n&amp;#x200B;\n\n3) You want to worship idols - please go ahead. You are a murti pujak(idol worship)\n\n&amp;#x200B;\n\n4) You dont want to worship idols- no problem u can focus on Nirguna Brahman.\n\n&amp;#x200B;\n\n5) You want to criticise something in our religion. Come forward. We are logical. Nyaya, Tarka etc are core Hindu schools\n\n&amp;#x200B;\n\n6) You want to accept beliefs as it is. Most welcome. Please go ahead with it.\n\n&amp;#x200B;\n\n7) You want to start your journey by reading "Bhagvad Gita"- Sure !\n\n&amp;#x200B;\n\n8) You want to start your journey by reading "Upanishads" - Go ahead\n\n&amp;#x200B;\n\n9) You want to start your journey by reading "Purana"- Be my guest.\n\n&amp;#x200B;\n\n10) You just don't like reading Puranas or other books. No problem my dear. Go by Bhakti(devotion) tradition.\n\n&amp;#x200B;\n\n11) You don't like idea of Bhakti(devotion) ! No problem. Do your Karma(moral duty) Be a karmayogi.\n\n&amp;#x200B;\n\n12) You want to enjoy life. Very good. No problem at all. This is Charvaka Philosophy.\n\n&amp;#x200B;\n\n13) You want to abstain from all the enjoyment of life &amp; find God - let's go ! Be a Sadhu, an ascetic !\n\n&amp;#x200B;\n\n14) You don't like the concept of God. You believe in Nature only - Welcome. (Trees are our friends and Prakriti or nature is worthy of worship).\n\n&amp;#x200B;\n\n15) You believe in one God or Supreme Energy. Superb! Follow Advaita philosophy\n\n&amp;#x200B;\n\n16) You want a Guru. Go ahead. Receive gyaan(knowledge).\n\n&amp;#x200B;\n\n17) You don't want a Guru.. Help yourself ! Meditate, Study !\n\n&amp;#x200B;\n\n18) You believe in Female energy ! Shakti is worshipped.\n\n&amp;#x200B;\n\n19) You believe that every human being is equal. Yeah! You're awesome, come on let's celebrate Hinduism! "Vasudhaiva kutumbakam" (the world is a family)\n\n&amp;#x200B;\n\n20) You don't have time to celebrate the festival.\n\n&amp;#x200B;\n\nDon't worry. One more festival is coming! There are multiple festivals every single day of the year.\n\n&amp;#x200B;\n\n21) You are a working person. Don't have time for religion. Its okay. You will still be a Hindu.\n\n&amp;#x200B;\n\n22) You like to go to temples. Devotion is loved.\n\n&amp;#x200B;\n\n23) You don't like to go to temples - no problem. You are still a Hindu!\n\n&amp;#x200B;\n\n24) You know that Hinduism is a way of life, with considerable freedom.\n\n&amp;#x200B;\n\n25) You believe that everything has God in it. So you worship your mother, father, guru, tree, River, Prani-matra, Earth, Universe!\n\n&amp;#x200B;\n\n26) And If you don't believe that everything has GOD in it - No problems. Respect your viewpoint.\n\n&amp;#x200B;\n\n27) "Sarve jana sukhino bhavantu " (May you all live happily)\n\n&amp;#x200B;\n\nThis is exactly the essence of Hinduism, all inclusive .. That is why it has withstood the test of time inspite of repeated onslaught both from within and outside, and assimilated every good aspects from everything . That is why it is eternal !!!. \n\n&amp;#x200B;\n\n"Ano bhadrah Krathavo Yanthu Vishwathah" Let the knowledge come to us from every direction.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hi to all of the community,\n\n\nRecently due to mods sleeping, we saw few miscreants like u/Kareba1614, who have been using devilish tantric interpretations of sacred texts, sharing unfunny pictures for his own sadistic pleasure of defaming our religion. \n\n\nHere's one of his latest posts: \n\nhttps://www.reddit.com/r/EXHINDU/comments/vkp1sf/taking_full_advantage_of_his_long_trunk/?utm_medium=android_app&amp;utm_source=share\n\n\nNow for people who may not know, this is Uchchhishta Ganapati. This Ganapati is used by vamachara people, people who go opposite the vedic practices, which in short mean that only tantrics and devils worship this Ganapati. \n\nThis worship of Tantric based Ganapati is only used by tantrics to bless a couple for a kid.\n\n\nNow I know that this may sound ridiculous, but sons of Kauravas live among us, yes that's right, the bulla community. And one of the main flag bearers of this is u/Kareba1614. In his 24 days of rubbish posting, he's been trying to defame Hinduism by either of the following:\n\n1. Using his Baulvi interpreted sacred texts to defame Hinduism\n2. Using the devilish ideology and bringing it on display in name of Hinduism \n3. Using a fuckall subreddit of exBindu to generate hate within uneducated population\n\n\nThis half cut dick guy got his ass kicked in his starting days, and is smartly deleting all the texts where he got his ass kicked.\n\nLord Krishna stated that "Person who goes to others house to generate hate based on wrong information even in name of gossip deserves the worst of hell ", and frankly speaking, u/Kareba1614 is a 11th standard kid who's been given this direction by his family.\n\nMODERATORS, ARE YOU STILL SLEEPING?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hi and Namaste!\n\nI have created a new subreddit called r/ABCIndianHindus for Hindus born and raised Overseas or living abroad to be more of a space where people can more openly talk about Hindu focused topics that are discouraged in other subreddits as well as being a Hindu outside of India and being born and raised Hindu outside of India like the United States! Come check it out!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This reddit is so out of touch with what is going on in this platform. Dear Mods and Admins, and members of this subreddit, just by naming your subreddit as Hindutva rises doesn't mean you are helping in any way to contribute towards this movement. \n\nIf you guys just want to make memes and show clips of videos then might as well close this down and post those things on r\\bakchodi or whatever other platforms made for such contents.\n\nThere are tonnes of anti hindu and anti hindutva content floating around other subreddits, and there no reply from anyone, was expecting something to counter from this subreddit but no.\n\nI guess y'all just want to enjoy and retweet or repost stuff. Can't say I'm buying into your movement.
                                                                                                                                                                                                           Articles like this which prove that Christianity is already significant and hiding in the shadows in states like Andhra show that Hindus will continue to decrease in numbers for the foreseeable future which is scary for me as I am a Hindu Telegu person myself. \n\n [Andhra Pradesh is 25% Christian now, thanks to late YSR Reddy (hindupost.in)](https://hindupost.in/dharma-religion/andhra-pradesh-is-25-christian-now/#:~:text=A%20recent%20TV%20interview%20of%20sitting%20YSRCP%20MP,as%20well%20as%20the%20fraud%20in%20census%20data.) \n\nEven Hindutva content creators have pointed out that Hinduism is on the way out and that by the end of the century it will be nearly dead. \n\n [Hinduism will be finished in another century, columnist Abhijit Iyer Mitra predicts. Read why he thinks so - hindusoftheworld](https://hindusoftheworld.com/hinduism-will-be-finished-in-another-century/) \n\n [Is Hinduism Too Tolerant? Is It Doomed? - YouTube](https://www.youtube.com/watch?v=z8rZtHGOpoU) \n\nThe only real way we can save Sanatana Dharma is by violence or force, just like how Pakistan made their population of 20% Hindu to nearly nonexistent as well as banning of foreign NGOs and a new pro Hindu constitution which bans Islam and Xtianity but these would be considered extreme and would require a coup of the current government to achieve and thus it will not happen nor do I think Hindus would advocate for this. \n\nThe problem lies with what happens when we become a minority, the transition will not be peaceful as history shows us. Our temples will be destroyed and Hindus will be hunted, forcibly converted, or killed just as history shows us. We are going down the path of the Zoroastrians where enough of their numbers have been killed off to the point where they now face a demographics collapse and will die a slow and painful death while watching everything they built crumble into dust. I don't want to make this mistake so we need a plan B ASAP if Hindutva fails to protect Hinduism and Hindus in India. \n\nI suggest we become a missionary faith, and not like ISKCON but more like the Catholic Church which forces discipline in its members and starts converting non Indians into Hindus so that our religion stays alive outside of India, not only that but we need to find outer countries where Hindus can run to when the killings start. When the Russian Ukraine war broke out Ukrainian Jews got on a plane and went to Israel for safety. The Zoroastrians, Tibetans, Jews, etc all ran to India when they didn't have a country from themselves and some even created countries like Israel to protect themselves, but in an ironic twist we Hindus have nowhere to go which is why we need to find another place where we can build another Hindu country to take in Hindus when India falls. \n\nIf this information scares you it should because we may have already lost the numbers game needed to turn India into a Hindu nation. If you guys are already reconverting people back to Hinduism then great but I fear it might not be enough. Thoughts?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What are your thoughts about caste system in 21st century?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         &amp;#x200B;\n\nhttps://reddit.com/link/v409gs/video/c1i4h9lwye391/player
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It's impossible to teach them to be in the middle. If you want Hinduism to live, you need to show pride, not just obedience. And if you're still a kid, teach your friends Hinduism AND Hindutva.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lol,\n\nr/ExMuslim has over 21 times more people than r/EXHINDU\n\nr/ExChristian has over 19 times more people than r/EXHINDU\n\n&amp;#x200B;\n\nIt's because the goal of our Dharma is to help people and to reduce suffering, not to conform people into a code that is wrong.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Plz, give reasons that are logical and valid.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I'm extremely Hindutva, but it looks to me like Modi has gotten a bit lazy.\n\n1. He still hasn't freed the temples after 8 years! I could've done better!\n2. The Muslims are still allowed to do azaan loudly with speakers\n3. UCC hasn't been passed.\n4. The Hindu Rashtra hasn't been made! And it looks like Modi isn't going to make it. We're going to continue to live in the sickular hellhole.\n\nModi needs to ramp up his game. Unless we see the UCC and other HUGE developments, large amounts of the Hindutva Right are not going to vote for him. We need a new leader.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SURAH CH 4 VERSE 74 --- the Allah will provide anyone mighty rewards who fights for Allah...even he is put to death or become victorious ( a major tool for  altruistic suicide like suicide bombing ) \n\nAL TAWBA CH 9 VERSE 29 ---- Kill (it is not fight bcoz when u see Arabic version there is "quatil" ) or take jiziya from anyone who don't belive in Allah or the Last day or the things which are considered unlawfu and who do not adopt religion of truth from those who were given the scripture.\n\nSURAH LUQMAN AYAT CH 31 VERSE 6 --- and of the people is he who buys the amusement of speech to mislead [others] from the way of Allah without knowledge and who takes it in ridicule. Those will have a humiliating punishment.( unlike hindhu sameness that is there is different path but all lead to same place ) \n\nSURAH AL KAHF CH 18 VERSE 86 --- until he reached the setting ùpointú of the sun, which appeared to him to be setting in a spring of murky water, where he found some people. We said, \034O kul-Qarnain! Either punish them or treat them kindly. ( THE SUN GET BURIED INTO WATER AND FUTHER MORE THE QARNAIN CAN DO ANYTHING WITH PPL EITHER PUNISH THEM OR KINDLY TREAT THEM....WHERE IS JUSTICE ) \n\nPS : IF THERE IS GOOD RESPONSE  I AM GOING TO POST MORE VERSES \nAND MOREOVER I AM READY FOR GOOD DISCUSSION AND ANY OTHER INTERPRETATION
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Why do Hindutva supporters and the BJP push Hindi as the national language. It is only native to one region of India, it is not the indigenous language to the subcontinent either. It is actually pretty new and comes from the same family as Urdu. It is not indigenous to the entire continent, our Vedic ancestors did not even speak Hindi. So why force that as the main official language. India can be a multi-lingual state and that's what makes it unique. Also most of the world and even the Indian diaspora speak English, so that can be used to connect communities. Also English would never be accepted as a main local language when other languages and promoted.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BJP is the last hope.\n\nBJP is not equals congress. BJP may have Sushil Modi, Khattar, Fadnavis etc but it also has Yogi, Himanta and Biplab. I Know Pattahrbazi has happened in Bjp states also. but now think about the result all those would be punished silently without any news. Just like you can see how leftist triggered CM of MP. The punishment needs to be given silently.\n\nSO stop saying remove BJP\n\nBJP has developed ignored temple corridors, Kedarnath Ayodhya and Kashi. The PM is unashamed to attend pooja at Haridwar, at Kedarnath or laying first stone for Ram Mandir. The ambit of Hindus have now increased and even though Government may seem to be in inaction, the public morale has risen. The boycott of FabIndia, cracker bursting against ban orders during Diwali, the Gurugram citizens doing havan to oppose Public namaz, the debate on Halal economy, the demand to free temples, the demand to amend NCERT, cancelling of shows of Munawar Faruqi for Godhra jokes & the awareness has increased a lot and we have become more assertive. This kind of discourse wouldn\031t have happened 7 years ago. You wouldn\031t even know how much damage halal economy was doing, how much exploitations temples face, how biased our NCERT books were&
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \n\n\n\nI think the government should get a policy out saying,  if there are more than 2 children , the family won't be getting any benefits from the government. \n\n If you can't provide proper food for yourself,  and you go marry 2 , 3 women make 10,20 children and live off the government funds , most of which are the taxes paid by billion of people . \n\nWho so ever has a more kids and multiple wife's they should be barred from all government provided ration , education , scholarship, medical care .. everything.  \n\n\nHum do , hamare do .(our government can easily support this ) \n\nIf you decide to have more it's ur choice , but the government isn't going to provide for them .\nAll our taxes are being used by them ,\nThey  can't afford eat , have no good education , all they do is marry 2,3 and make 10-15 kids  living in a room which they call a home , they don't have money to buy cloths lekin government should help them , government should pay fir their ration , government should pay for their education,  government is responsible for their health . \n\nWe all Indians pay shit load of taxes thinking that it would be for the welfare of the country  . \n\nBut these people bleed our government money , from food to hospital,  everything is given by the government. \n\n\nThey eat , study , live with our funding and say  Ola Hu Uber.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
     subreddit comments
 HindutvaRises        3
 HindutvaRises        7
 HindutvaRises        9
 HindutvaRises        0
 HindutvaRises       79
 HindutvaRises        4
 HindutvaRises        0
 HindutvaRises       16
 HindutvaRises        2
 HindutvaRises        7
 HindutvaRises       24
 HindutvaRises       10
 HindutvaRises        3
 HindutvaRises        0
 HindutvaRises        3
 HindutvaRises        2
 HindutvaRises        3
 HindutvaRises       12
 HindutvaRises        6
 HindutvaRises        3
 HindutvaRises        2
 HindutvaRises       17
 HindutvaRises        0
 HindutvaRises        5
 HindutvaRises        4
 HindutvaRises        0
 HindutvaRises       13
 HindutvaRises        1
 HindutvaRises        1
 HindutvaRises        1
 HindutvaRises        0
 HindutvaRises        0
 HindutvaRises        4
 HindutvaRises        2
 HindutvaRises       17
 HindutvaRises        1
 HindutvaRises        3
 HindutvaRises        0
 HindutvaRises        2
 HindutvaRises        4
 HindutvaRises       23
 HindutvaRises        0
 HindutvaRises       12
 HindutvaRises        2
 HindutvaRises        7
 HindutvaRises       32
 HindutvaRises       10
 HindutvaRises        4
 HindutvaRises       26
 HindutvaRises       31
 HindutvaRises        9
 HindutvaRises       11
 HindutvaRises        5
 HindutvaRises       13
 HindutvaRises        6
 HindutvaRises        8
 HindutvaRises        9
 HindutvaRises        0
 HindutvaRises        1
 HindutvaRises        2
 HindutvaRises        8
 HindutvaRises        4
 HindutvaRises        1
 HindutvaRises       10
 HindutvaRises        8
 HindutvaRises       12
 HindutvaRises       13
 HindutvaRises        0
 HindutvaRises       18
 HindutvaRises        0
 HindutvaRises        0
 HindutvaRises        0
 HindutvaRises       26
 HindutvaRises        2
 HindutvaRises        9
 HindutvaRises       34
 HindutvaRises        0
 HindutvaRises        5
 HindutvaRises        5
 HindutvaRises        7
 HindutvaRises        2
 HindutvaRises       57
 HindutvaRises       13
 HindutvaRises        3
 HindutvaRises        6
 HindutvaRises        8
 HindutvaRises        5
 HindutvaRises        0
 HindutvaRises       12
 HindutvaRises        3
 HindutvaRises       14
 HindutvaRises        0
 HindutvaRises       13
 HindutvaRises        2
 HindutvaRises        5
 HindutvaRises        1
 HindutvaRises        0
 HindutvaRises        5
 HindutvaRises        3
 HindutvaRises        0
                                                                                                                                 url
                                                      https://www.reddit.com/r/HindutvaRises/comments/thtbq1/police_jihad_in_bengal/
                                                          https://www.reddit.com/r/HindutvaRises/comments/tgyxi9/we_will_always_win/
                                                                https://www.reddit.com/r/HindutvaRises/comments/tgszjn/sab_dekhenge/
                             https://www.reddit.com/r/HindutvaRises/comments/teciol/lawbeatind_uttarakhand_hc_uploads_order_denying/
                             https://www.reddit.com/r/HindutvaRises/comments/tdvaf1/old_jnu_professor_nivedita_menon_tells_students/
                                               https://www.reddit.com/r/HindutvaRises/comments/tcayaq/jai_shri_ram_jai_shri_krishna/
                             https://www.reddit.com/r/HindutvaRises/comments/tbzvoy/never_forget_never_forgive_the_perpetrators_the/
                                                     https://www.reddit.com/r/HindutvaRises/comments/swslwp/jai_bhavani_jai_shivaji/
                            https://www.reddit.com/r/HindutvaRises/comments/svq3u8/ram_setu_is_with_adams_bridge_those_days_are_not/
                                 https://www.reddit.com/r/HindutvaRises/comments/sto9fm/a_great_tribute_to_our_great_ancestors_they/
                             https://www.reddit.com/r/HindutvaRises/comments/sr5pqq/what_is_the_main_threat_to_traditional_hinduism/
                                                         https://www.reddit.com/r/HindutvaRises/comments/sq6xxl/jaiiiiiii_shree_ram/
                          https://www.reddit.com/r/HindutvaRises/comments/smy5zk/want_opinions_on_these_hindu_resources_and_methods/
                             https://www.reddit.com/r/HindutvaRises/comments/sk7vt7/a_must_watch_if_you_are_a_hindu_gives_knowledge/
                                                       https://www.reddit.com/r/HindutvaRises/comments/sczf5u/found_this_on_youtube/
                            https://www.reddit.com/r/HindutvaRises/comments/sc5w4q/why_i_killed_gandhi_do_watch_this_movie_congress/
                                                            https://www.reddit.com/r/HindutvaRises/comments/san0u7/one_day_for_sure/
                             https://www.reddit.com/r/HindutvaRises/comments/s7mzne/darkest_day_in_the_history_of_independent_india/
                            https://www.reddit.com/r/HindutvaRises/comments/s57k2i/ed_attaches_asset_worth_rs_48_lakh_of_journalist/
                                                                https://www.reddit.com/r/HindutvaRises/comments/s544oj/secular_meme/
                                                                  https://www.reddit.com/r/HindutvaRises/comments/s4got7/\030\030$//
                                https://www.reddit.com/r/HindutvaRises/comments/s4a74h/muslims_ruled_endia_for_800_years11_yet_were/
 https://www.reddit.com/r/HindutvaRises/comments/s3nnwf/\006*\025_\0240_\006*\025_*050_\025_\030\030$_$/0_\025_90&\025_6-\025.(\017/
                              https://www.reddit.com/r/HindutvaRises/comments/s1oe1u/major_subreddit_that_has_connections_to_reddit/
                           https://www.reddit.com/r/HindutvaRises/comments/vr7wwz/no_investigation_no_chargesheet_no_charge_framing/
              https://www.reddit.com/r/HindutvaRises/comments/vqzu4f/9(&_&5_&5$\023_\025_+0_9\006_\005*.(_\a$(_9..$_\006$_\0259_8_9/
                                          https://www.reddit.com/r/HindutvaRises/comments/vqw8i9/we_are_leading_to_a_good_direction/
                                                      https://www.reddit.com/r/HindutvaRises/comments/vqfhkp/from_ig_theangryvaanar/
                               https://www.reddit.com/r/HindutvaRises/comments/vqel4k/2_years_ago_i_made_a_website_on_hindu_history/
                               https://www.reddit.com/r/HindutvaRises/comments/vq9nm6/devki_nandan_thakur_ji_message_to_every_hindu/
                                  https://www.reddit.com/r/HindutvaRises/comments/vpuqkl/27_points_which_describe_the_uniqueness_of/
                                 https://www.reddit.com/r/HindutvaRises/comments/vps166/when_shivsena_challenged_a_muslim_to_recite/
                                                                    https://www.reddit.com/r/HindutvaRises/comments/vp798h/so_be_it/
                                                           https://www.reddit.com/r/HindutvaRises/comments/vp6qzp/\005$_9_\0050.-_9/
                                            https://www.reddit.com/r/HindutvaRises/comments/vp2sbp/please_share_as_much_as_possible/
                                                                https://www.reddit.com/r/HindutvaRises/comments/voywep/waah_my_lord/
                            https://www.reddit.com/r/HindutvaRises/comments/vmki0a/such_illiteracy_and_dumbness_that_ever_answer_is/
                                                            https://www.reddit.com/r/HindutvaRises/comments/vm2d5o/mudiji_supremacy/
                                                                           https://www.reddit.com/r/HindutvaRises/comments/vm2akh/_/
                                    https://www.reddit.com/r/HindutvaRises/comments/vlttnd/jai_hanuman_check_comment_for_insta_link/
                            https://www.reddit.com/r/HindutvaRises/comments/vkpqjm/found_a_true_kaurava_bulla_ukareba1614_trying_to/
                                       https://www.reddit.com/r/HindutvaRises/comments/vkatk9/i_have_created_a_new_subreddit_called/
                             https://www.reddit.com/r/HindutvaRises/comments/vdtudv/lord_indra_supremacy_check_comment_for_more_vid/
                                                             https://www.reddit.com/r/HindutvaRises/comments/vbue0i/om_namah_shivay/
                                                               https://www.reddit.com/r/HindutvaRises/comments/vaqq1z/made_it_today/
                           https://www.reddit.com/r/HindutvaRises/comments/vaiji0/palestinian_islamic_scholar_nidhal_siam_at_alaqsa/
                                 https://www.reddit.com/r/HindutvaRises/comments/v9ej8c/hindus_have_more_children_for_hindu_rashtra/
                                https://www.reddit.com/r/HindutvaRises/comments/v97cbh/hanuman_mandir_after_stone_pelting_in_ranchi/
                                           https://www.reddit.com/r/HindutvaRises/comments/v956zo/stone_pelting_in_ranchi_jharkhand/
                                                   https://www.reddit.com/r/HindutvaRises/comments/v8yxmx/i_support_nupur_sharma_ji/
                                                    https://www.reddit.com/r/HindutvaRises/comments/v8igcu/not_oc_ig_theangryvaanar/
                                                  https://www.reddit.com/r/HindutvaRises/comments/v7827z/made_it_today_jai_shri_ram/
                                              https://www.reddit.com/r/HindutvaRises/comments/v6mrcx/this_reddit_is_so_out_of_touch/
                              https://www.reddit.com/r/HindutvaRises/comments/v5sgp9/whats_plan_b_for_hindus_andhra_is_already_more/
                                                        https://www.reddit.com/r/HindutvaRises/comments/v5jo6a/remove_mat_karna_bas/
                                                          https://www.reddit.com/r/HindutvaRises/comments/v5hk6o/about_caste_system/
                                                                   https://www.reddit.com/r/HindutvaRises/comments/v4p1uk/up_police/
                                              https://www.reddit.com/r/HindutvaRises/comments/v43eac/atal_bihari_vajpayee_thug_life/
                                                       https://www.reddit.com/r/HindutvaRises/comments/v409gs/honour_your_ancestors/
                           https://www.reddit.com/r/HindutvaRises/comments/v2gx1y/good_muslim_or_bad_muslim_koo_leaker_sabmit_patra/
                                             https://www.reddit.com/r/HindutvaRises/comments/v2f4dy/hindu_sikh_boi_boi_on_clubhouse/
                           https://www.reddit.com/r/HindutvaRises/comments/v1fcoj/if_you_dont_teach_your_kids_to_be_extremely_proud/
                              https://www.reddit.com/r/HindutvaRises/comments/v0wehc/writing_competition_and_mentorship_program_the/
                                                                       https://www.reddit.com/r/HindutvaRises/comments/uycn41/title/
                               https://www.reddit.com/r/HindutvaRises/comments/uxk3fe/turkey_pakistani_refugees_harassing_women_and/
                              https://www.reddit.com/r/HindutvaRises/comments/uxjzhg/turkey_pakistani_refugee_getting_beaten_up_and/
                                         https://www.reddit.com/r/HindutvaRises/comments/uwh66t/rexmuslim_rexchristian_and_rexhindu/
                             https://www.reddit.com/r/HindutvaRises/comments/uuigle/yogi_aadityanaath_ne_btya_kii_jab_uttar_pradesh/
                                                          https://www.reddit.com/r/HindutvaRises/comments/utl1gz/atleast_watch_this/
                               https://www.reddit.com/r/HindutvaRises/comments/use8u8/panch_mukha_sadashiva_five_faces_of_sadashiva/
                               https://www.reddit.com/r/HindutvaRises/comments/urtruh/regarding_om_nada_sound_of_aum_sound_of_omkar/
                                            https://www.reddit.com/r/HindutvaRises/comments/ur5try/regarding_brahman_it_or_absolute/
                              https://www.reddit.com/r/HindutvaRises/comments/uo4pcy/can_someone_give_me_strong_facts_and_arguments/
                             https://www.reddit.com/r/HindutvaRises/comments/unwwca/from_the_angry_vaanar_additional_information_in/
                                                           https://www.reddit.com/r/HindutvaRises/comments/umhigz/did_you_know_that/
                                   https://www.reddit.com/r/HindutvaRises/comments/ulb6qa/why_i_dont_like_modi_and_im_not_a_libtard/
                                                 https://www.reddit.com/r/HindutvaRises/comments/ujsy7z/duggal_sahab_to_pappu_nikle/
                            https://www.reddit.com/r/HindutvaRises/comments/uieus2/a_turkish_citizen_of_armenian_origin_in_a_bus_he/
                               https://www.reddit.com/r/HindutvaRises/comments/ui30uq/pakistani_refugee_in_turkeyistanbul_filming_a/
                                https://www.reddit.com/r/HindutvaRises/comments/uhq8s5/turkey_pakistani_refugees_taking_pictures_of/
                                https://www.reddit.com/r/HindutvaRises/comments/uhjj1v/some_fallacy_in_religious_scripture_of_islam/
                                                      https://www.reddit.com/r/HindutvaRises/comments/ue9hy2/hindu_dont_speak_hindi/
                                              https://www.reddit.com/r/HindutvaRises/comments/uayjmq/just_dont_mess_with_true_power/
                                         https://www.reddit.com/r/HindutvaRises/comments/ua3my9/milards_like_this_meme_unironically/
                               https://www.reddit.com/r/HindutvaRises/comments/ua2rws/hanuman_chalisa_everyday_7_times_without_fail/
                                                    https://www.reddit.com/r/HindutvaRises/comments/ua20vx/kindly_support_this_guys/
                                                                    https://www.reddit.com/r/HindutvaRises/comments/u9kpbr/thoughts/
                                    https://www.reddit.com/r/HindutvaRises/comments/u8qh2f/why_cant_i_find_any_help_line_for_hindus/
                             https://www.reddit.com/r/HindutvaRises/comments/u824j8/secoolar_india_vroo_everyone_is_subject_to_free/
                                                 https://www.reddit.com/r/HindutvaRises/comments/u7vchz/i_am_not_gonna_vote_for_bjp/
                                  https://www.reddit.com/r/HindutvaRises/comments/u7a2xh/big_braking_video_of_the_exact_moment_when/
                             https://www.reddit.com/r/HindutvaRises/comments/u75h3k/akbar_and_birbal_join_the_savesoil_movement_see/
                                                       https://www.reddit.com/r/HindutvaRises/comments/u701qo/mkc_secular_hindus_ki/
                                                                           https://www.reddit.com/r/HindutvaRises/comments/u6eq4s/_/
                                                        https://www.reddit.com/r/HindutvaRises/comments/u5nubg/bjp_is_our_last_hope/
                                               https://www.reddit.com/r/HindutvaRises/comments/u4ww01/pav_bhaji_khao_bhaji_pav_nahi/
                                                           https://www.reddit.com/r/HindutvaRises/comments/u4862u/what_do_you_think/
                                                  https://www.reddit.com/r/HindutvaRises/comments/u41f8j/is_there_even_any_solution/
                           https://www.reddit.com/r/HindutvaRises/comments/u2uev2/join_rindianjihadiwatch_to_spread_awareness_about/
                               https://www.reddit.com/r/HindutvaRises/comments/u16wdl/pakistan_is_not_a_place_its_a_thought_seen_in/
# accessing tokens
hindutvarises_summary$Tokens
  [1]   4   4   2  47  20   7  14   5  21  26  34   5 209  19   4  17   6  90
 [19]  20   2   6  17   0  47  29  39 195   4 202   8 773   9   7   7   6   5
 [37]  30   2   4   9 329  93   9   5   4  29   7   8   7   5   7  10 147 559
 [55]   4  14   2   5   9  18   6  64  10   1  29  27  72  19   3  59  73   7
 [73]  34  11   5 135   8  57  17  55 282 133   6   6   8   4   2  10  10   7
 [91]  39  15   5   2 246   7 265   6  24  14
# india
india_corpus <- corpus(india, text_field = "title_text")
india_summary <- summary(india_corpus)
india_summary
Corpus consisting of 747 documents, showing 100 documents:

    Text Types Tokens Sentences   date_utc  timestamp
   text1    17     17         2 2023-11-27 1701096951
   text2    16     16         1 2023-11-27 1701095266
   text3    14     14         2 2023-11-27 1701092472
   text4    22     25         1 2023-11-27 1701089321
   text5    27     29         2 2023-11-27 1701084272
   text6    13     13         1 2023-11-27 1701082188
   text7    14     14         1 2023-11-27 1701081406
   text8    81    139         7 2023-11-27 1701073900
   text9    13     13         1 2023-11-27 1701072621
  text10   153    314        14 2023-11-27 1701071480
  text11   147    277        11 2023-11-27 1701071453
  text12    14     14         1 2023-11-27 1701071157
  text13   575   1584        69 2023-11-27 1701068571
  text14    30     34         3 2023-11-27 1701066999
  text15     9      9         1 2023-11-27 1701065947
  text16    35     48         4 2023-11-27 1701065695
  text17    83    138         8 2023-11-27 1701064926
  text18    16     19         1 2023-11-27 1701062690
  text19    26     33         4 2023-11-27 1701061572
  text20    83    127         8 2023-11-27 1701061266
  text21    12     12         1 2023-11-27 1701058486
  text22    13     13         1 2023-11-27 1701056849
  text23   120    171        12 2023-11-26 1700973330
  text24   128    197        13 2023-11-26 1700976453
  text25   174    312        18 2023-11-26 1700978836
  text26     9     19         1 2023-11-27 1701054837
  text27   244    447        20 2023-11-27 1701051607
  text28   138    245        11 2023-11-26 1701016767
  text29    94    140         8 2023-11-26 1701023854
  text30   255    538        33 2023-11-26 1701026742
  text31   201    376        18 2023-11-26 1701030523
  text32    37     46         2 2023-11-26 1701032763
  text33    67     91         7 2023-11-26 1701038863
  text34    47     53         2 2023-11-27 1701044953
  text35     8      8         1 2023-11-26 1701024946
  text36    44     59         2 2023-11-26 1701024723
  text37    21     22         2 2023-11-26 1701017295
  text38    19     21         1 2023-11-26 1701017137
  text39    28     33         1 2023-11-26 1701016970
  text40    51     68         4 2023-11-26 1701014402
  text41    46     62         2 2023-11-26 1701012449
  text42    42     55         6 2023-11-26 1701012424
  text43    18     19         1 2023-11-26 1700990554
  text44    45     53         3 2023-11-26 1700994246
  text45    96    168        12 2023-11-26 1700991100
  text46    35     39         1 2023-11-26 1700992052
  text47   108    164         7 2023-11-26 1700990996
  text48    13     13         1 2023-11-29 1701231259
  text49   145    224        18 2023-11-29 1701231084
  text50    47     61         6 2023-11-29 1701230959
  text51    12     14         1 2023-11-29 1701230356
  text52     9      9         1 2023-11-29 1701230170
  text53    65     92         6 2023-11-29 1701229241
  text54    12     13         1 2023-11-29 1701227478
  text55     8      8         1 2023-11-29 1701227207
  text56    74    110         7 2023-11-28 1701192698
  text57   163    300        19 2023-11-28 1701192633
  text58    93    137         6 2023-11-28 1701181287
  text59    84    128         8 2023-11-28 1701177287
  text60   185    322        18 2023-11-28 1701177176
  text61     7      7         2 2023-11-29 1701221960
  text62    10     10         2 2023-11-28 1701215011
  text63    64     97         6 2023-11-28 1701212227
  text64   115    181         7 2023-11-28 1701208432
  text65    43     60         4 2023-11-28 1701205410
  text66    12     12         2 2023-11-28 1701205381
  text67    47     59         4 2023-11-28 1701205072
  text68    12     15         1 2023-11-28 1701205027
  text69   126    191         6 2023-11-28 1701204868
  text70    10     10         1 2023-11-28 1701201726
  text71    57     85         4 2023-11-28 1701199185
  text72   252    594        33 2023-11-28 1701199026
  text73   228    464        12 2023-11-28 1701197072
  text74   110    174        12 2023-11-28 1701194533
  text75    33     38         1 2023-11-28 1701193997
  text76    11     11         2 2023-11-28 1701193272
  text77    74    110         7 2023-11-28 1701191138
  text78    15     15         2 2023-11-28 1701190002
  text79    10     10         1 2023-11-28 1701187795
  text80    12     12         1 2023-11-28 1701186899
  text81    18     18         1 2023-11-28 1701185553
  text82     7      7         1 2023-11-28 1701185041
  text83   129    222        12 2023-11-28 1701184580
  text84    13     13         1 2023-11-28 1701184442
  text85   149    279         9 2023-11-28 1701183306
  text86    10     10         1 2023-11-28 1701181499
  text87    21     21         2 2023-11-28 1701179876
  text88    12     12         1 2023-11-28 1701179664
  text89    17     18         1 2023-11-28 1701179638
  text90    10     10         1 2023-11-28 1701177037
  text91    12     13         1 2023-11-28 1701176812
  text92    17     17         1 2023-11-28 1701176677
  text93   113    156         7 2023-11-28 1701172266
  text94    17     17         1 2023-11-28 1701172624
  text95    25     30         3 2023-11-28 1701171594
  text96    17     18         1 2023-11-28 1701168547
  text97    11     11         1 2023-11-28 1701168342
  text98   137    245        13 2023-11-28 1701164752
  text99    62     77         4 2023-11-28 1701164492
 text100    70    112         2 2023-11-28 1701161189
                                                                                                                                                                                                                                                                                                      title
                                                                                                                                                                                                                Big fat weddings are India's soft power abroad, just like Bollywood. Don't stop this export
                                                                                                                                                                                                              Collapsed Indian tunnel had no safety exit, was built through geological fault - panel member
                                                                                                                                                                                                                                Bengaluru airport won't ask you to put gadgets in plastic trays. Here's why
                                                                                                                                                                                                                           NDTV: Class 4 Boys Attack Classmate With Compass 108 Times After Fight At School
                                                                                                                                              Happening tomorrow! Join us as we dive into the (Regulatory) dark clouds that loom over \034OTT\035 platforms | Broadcasting Services (Regulation) Bill, 2023
                                                                                                                                                                                                                                                  4 months, 26 victims: Sham stock scheme pulls off big con
                                                                                                                                                                                                                               Will rename Hyderabad as Bhagyangar if BJP comes to power, says Kishan Reddy
                                                                                                                                                                                                                                                                                      Decathlon is Pathetic
                                                                                                                                                                                                                  48% of complaints on National Consumer Helpline against e-commerce players during Jan-Aug
                                                                                                                                                                 If you ever have a chance to leave India, especially to a western country, take it and don\031t listen to anybody who tells you otherwise.
                                                                                                                                                                                                                                                       NRI\031s and ex NRI\031s, how do you view India now?
                                                                                                                                                                                                           IFFI \030censorship\031 row: Late BJP MLA\031s poem on caste discrimination triggers controversy
                                                                                                                                                                                                                                It's OVER - What are we going to do about it? #ODIWorldCup #IndiavAustralia
                                                                                                                                                                                                   "Apart from Jaitely &amp; Gadkari, No One.." I Inside Modi's Government Meetings I Top Bureaucrat Reveal
                                                                                                                                                                                                                                                           Anyone who wants to adopt these cuties, Gurugram
                                                                                                                                                                                                                                                                        Indian passport renewal from Canada
                                                                                                                                                                                                                                       Ever Thought About the Lack of Telugu Themes in South Indian Comedy?
                                                                                                                                                                                                               'Troubled' by growing trend among 'big families' to hold weddings abroad, says Narendra Modi
                                                                                                                                                                                                                                                                                 Wedding venue suggestions!
                                                                                                                                                                                                                                                              Is Agoda reliable for booking flight tickets?
                                                                                                                                                                                                                                      Tiger From Rajasthan Enters Kuno National Park, No Threat To Cheetahs
                                                                                                                                                                                                                                  \030bar On Evening Classes For Girls Is Likely To Derail Many A Dream\031
                                                                                                                                                                                                                                                                      Cat heavily injured need urgent help.
                                                                                                                                                                                                                                            Men in India who have extra-wide feet, where do you find shoes?
                                                                                                                                                                                                                                     Why dont we have an All-One-One Card (Aadhar+PAN+VoterID+other stuffs)
                                                                                                                                                                                                                                                 Malaysia to allow visa-free entry to Indians from December
                                                                                                                                                                                                             The month of November 1971, 52 years ago, Very important events were happening in our country.
                                                                                                                                                                                                               Do you consider it degrading to women to tell them to not attend a puja during their period?
                                                      Hey Guys, can someone help me with a referral for Frontend Developer. I got laid off around 5 month back since then I've been actively applying but not getting any revert back. I'd really appreciate if someone can help me with a referral please.
                                                                                                                                                                                                                                                                   Which laptop brand is the best in India?
                                                                                                                                                                                                                                                       Scamsters paid me money for their "tasks". What now?
                                                                                                                                                                                                                                                                               Flight rescheduling (Indigo)
                                                                                                                                                                                                                                                                        A friend needs to continue therapy.
               [Video] Rescuers try new tack to reach Indian tunnel workers: Indian rescuers began drilling vertically from the top of a mountain under which 41 workers became trapped two weeks ago while working on a highway tunnel. A previous rescue effort hit a snag when the drill broke - Reuters
                                                                                                                                                                                                                                                                     Why 75% of Indian Women are Unemployed
 Why I Am Not Just an Indian - I carry an Indian passport because being an Indian citizen, for me, is a political project, undertaken by one of the largest and most culturally diverse populations in the world. It is the most audacious democratic experiment, and it is yet to be fulfilled completely.
                                                                                                                                                                                                       Cousin took a loan but couldn\031t pay it back? As recovery agents run amok, even you aren\031t safe
                                                                                                                                                                              The benefits of a lousy passport - Having to choose from a limited number of holiday destinations can be strangely liberating
                                                                                                                                    India won't disappoint, says Modi as he invites the world 'to invest in our nation' - Calls people of India 'trendsetters and trailblazers when it comes to innovation'
                                                                                                                                                                                                     There is going to be Loksabha election in India next year, so thought of sharing these two viewpoints.
                                                                                                                                                                                                                        Hindi "speech to text app recommendation" for elderly who have hearing disabilities
                                                                                                                                                                                                                                                     Question for all having home-bakery business in india!
                                                                                                                                                                                                                       15 years of 26/11: One of the heroe who saved hundreds in 2008 Mumbai terror attacks
                                                                                                                                                                                                                        Just a year after Modiji's speech on freebie culture, BJB is promising free scooty?
                                                                                                                                                                                                                          What are the employment laws regarding quitting a job while working in a big MNC?
                                                                                                                                                                                                                                                                         26/11: Never Forgive, Never Forget
                                                                                                                                                                                                                                                                                          Lucky to be alive
                                                                                                                                                                                                                                            New SIM Card Rules To Be Followed In India From 1 December 2023
                                                                                                                                                                                                                                                A Hopless Indian Youth complains about the political scene.
                                                                                                                                                                                                                                                                             Refurbished laptop from Amazon
                                                                                                                                                                                                                                               Milk, Egg, Meat, Wool Output Increased In 2022-23: Govt Data
                                                                                                                                                                                                                                                       Cancer deaths in India due to avoidable risk factors
                                                                                                                                                                                                                                                            What to do something different in Goa this time
                                                                                                                                                                                                                               Experts tell what North India can learn from South India in alleviating smog
                                                                                                                                                                                                                                                      All 41 Indian labourers rescued from collapsed tunnel
                                                                                                                                                                                                                                 How to prove work experience when working for a private practicing lawyer?
                                                                                                                                                                                                                                                                         Unkown caller harassing my sister.
                                                                                                                                                                                                                                                                          Instructions for a trip to Mumbai
                                                                                                                                                                                                                                                                             [Confused] Dishwasher in India
                                                                                                                                                                                                                                 Why are other vegetarian states more tolerant of meat than Gujarat and UP?
                                                                                                                                                                                                                                                             Hiring stress? Campuses see delayed onboarding
                                                                                                                                                                                                                                                           Would love some information on these. Thank you!
                                                                                                                                                                                                                                                 Question for Indian expats: two work permits at same time?
                                                                                                                                                                                                                                                      What are some of the top Indian inventions post-1947?
                                                                                                                                                                                                                                                                How Can I earn as a college student online?
                                                                                                                                                                                                                                          Actor Randeep Hooda to marry Lin Laishram on November 29. Details
                                                                                                                                                                                                                                                                                Adoption in Delhi NCR - Dog
                                                                                                                                                                                                          Indian Air Force Eyes Future Frontiers With Contemplated Transition To Indian Air And Space Force
                                                                                                                                                                                                                                                                       Question regarding Doctor statistics
                                                                                                                                                                                                                                                 Adani group looking to exit FMCG joint venture with Wilmar
                                                                                                                                                                                                                                                                            Freelancers FIRC document issue
                                                                                                                                                                                                                                                                  Everyday I feel like a bitch , a coward .
                                                                                                                                                                                                                                                                                 Does PayTM delete reviews?
                                                                                                                                                                                                                                                 What is your opinion on the misinformation and media bias?
                                      Norms flouted, tectonic faultlines ignored: Lapses in Uttarkashi tunnel collapse | On-site investigation coupled with open-source Intelligence reveals the alarming lapses in the construction of the Silkyara tunnel where a collapse entrapped 41 workers on Diwali
                                                                                                                                                                                                                                                               Statistics of Registered Rape Cases in 2021.
                                                                                                                                                                                                                                                                                     Getting hydrology gigs
                                                                                                                                                                                                                                                                            Lorum imposum executive manager
                                                                                                                                                                                                                        Malayali space scientist VR Lalithambika conferred France's highest civilian honour
                                                                                                                                                                                                                                  Meet Arnold Dix, tunnelling expert India will thank for Uttarkashi rescue
                                                                                                                                                                                                                   Lok Sabha polls: BJP says will contest 26 of 48 Maharashtra seats, allies fret over deal
                                                                                                                                                                                                                                                                    India is seeing a massive aviation boom
                                                                                                                                                                                                                                    What's an accurate way to find out the value of your rare Indian coins?
                                                                                                                                                                                                                        All 41 workers trapped inside Silkyara tunnel successfully rescued - Times of India
                                                                                                                                                                                                                                                                          How can we better plan for death?
                                                                                                                                                                                                                                 Mazdoor-Kisan Mahapadav Calls for Bigger Movement Ahead, Fight Communalism
                                                                                                                                                                                                Explained: What is the new Discard Income Tax Return option? Benefits for taxpayers &amp; all FAQs answered
                                                                                                                                                                                                                                             iPhone maker Hon Hai plans $1.6 billion in India expansion bid
                                                                                                                                                                                                     India to launch first-ever auction of critical mineral blocks, including world's new fuel, from Nov 29
                                                                                                                                                                                                                                                              2 dalits beaten up, urinated on in Tamil Nadu
                                                                                                                                                                                                                         Centre squeezing funds for SC scholarship leads to arrest warrant for Dalit mother
                                                                                                                                                                                                               Gujarat: Dalit woman beaten to death by men booked in Atrocities case on her son's complaint
                                                                                                                                                                                                                                                                    Where was your family during Partition?
                                                                                                                                                                                                         How &amp; and why India checkmated Chinese giant Huawei's salami-slicing moves in top tech schools
                                                                                                                                                                                                                                                                                Is this note of any value ?
                                                                                                                                                                                                          Indian researchers paid $17mn to publish in open access journals in 2020 \024 57% of global total
                                                                                                                                                                                                                                       High-Dose Covid Treatment Less Effective In India Than Europe: Study
                                                                                                                                                                                                                                                                        Olx sellers using flipkart for scam
                                                                                                                                                                                                                                                            IGCSE Certifying statement for Non ECR Passport
                                                                                                                                                                                                                                                               Panicking because SimplPay paid for my order
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   W.T.F is happening in Indian Schools????
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I ordered a backpack from Decathlon India official website, and it was a prepaid order. I placed the order on 22nd of November. And yesterday(26/11/23) I got a message from them decathlon saying that my order has been delivered. But I didn't receive the order neither I got a call from any delivery guy. And the ridiculous part is that, they mentioned that the order was delivered on 27/11/23 where as they sent me the email of order delivered on 26/11/23 at 6pm. I'm seriously confused what to do, tried reaching out to them but they're not picking up the call. Please guide me, what to do in this situation.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I have traveled and lived in the US, Canada, New Zealand, Australia, Ireland, England, and several other countries for shorter amounts of time. There is a mentality with some Indians abroad to close the door of immigration behind them. They don\031t want to share or help. They got in, they\031re successful, and they don\031t want other Indians to come and succeeded, and they get violently jealous if I say, we should have more Indians immigrate to the countries that they made it to.\n\nJust remember, you can always go back to India, but you can never know what you\031re missing until you take that chance and go. Do not listen to any person who tells you abroad is overrated and it\031s difficult. It\031s because they\031re envious and jealous and do not want to compete with their own kind.\n\nThere is a growing group of Indians, who identify conservative to the point where they would want to restrict more Indians coming into western countries (even though they were able to succeed due to liberal policies). Do not listen to them. They are lower than dog feces. If you have the chance, take it. India has so many issues with overpopulation, pollution, infrastructure like traffic and healthcare, and education that if you have to deal with it, then try to make the best of it. My heart goes out to those, but if you have a chance to go abroad do not ever fumble that opportunity. 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hello, So I am a NRI, been in the US for 8 years. I have been traveling around India a lot last 2 years, spent a lot of time here. Here are my thoughts \n\n1. West is overrated- West is extremely overrated, the quality of life is poor, people are bad, health services are bad (to get an appointment it takes 4 months, in case of emergency the prices are so high), infrastructure is okayish - the roads are good I agree but they are not taken care of much, there is traffic issue and no work done to solve it, no public transport, with weather changes most of the infrastructure is dying\n\n2. Opportunities are everywhere now - I agree that before 5 years India had no opportunities but now things have changed. Salaries are good (if you work for it) and there are opportunities everywhere \n\n3. Family and Friends - this is the biggest one for me. After living in US for  8 years, I did not make any meaningful friendship. This is not just true for me but for a lot of people. After a certain age you need these things and this is something money cannot buy\n\nEvery place has positives and negatives, however I believe the obsession Indians have with the west is very much overrated and should end\n\nWhat do other NRI\031s, ex NRIs or other people think?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 The WC final is done and dusted but what I've not been able to dust myself off is the heartbreak, the pain and anguish of  so close and yet so far. This was by far India's best chance, having won 10 games on the trot and completely pulverizing every opposition on the way to the finals. Not one match prior to the finals that India played, can be called a close contest. It was a no-contest, we dominated and bullied our opponents every single game and every single time. So, what really happened to India in the finals? What came in the way of this juggernaut? 1.4B hearts are looking for an answer but the general response has been that it just wasn't our day.\n\nThe finals not being our day is a very lazy response. I understand that one team has to win and the other has to lose and it's going to be that way till the end of time. I'm going to try and dissect what went wrong and if at all, there's any learning through all of this.\n\nWhat went wrong?\n\n&amp;#x200B;\n\n\\- The selection of pitch was dumb to say the least. The ICC recommends that for critical games such as the Semi Finals and Finals, the host country should use a new pitch (a pitch that hasn't been used before in the tournament) which is less predictable, provides for an even contest between bat and ball and maintains the mystique around what's going to happen \n\n\\- If the BCCI had decided to use a road (a pitch no assistance whatsoever for bowlers, we would have easily won the game) as it would have simply been a contest against our batsmen versus Australia's, plus our bowlers are better than Australia's man for man\n\n\\- We need pace on the pitch at all times - IPL the spectacle and a commercial phenomenon that it has become is mostly because of the pitches that its played on. Surfaces that allows the ball to come on to the bat nicely and there are also some surfaces such as Chennai which favors spin and there's genuine turn on offer, but the pitch used for the finals was slow, sluggish and not designed for an competitive game of cricket. It was designed for India to win but was that proven wrong or what!\n\n\\- We ran into Australia, a team which simply knows how to win world cups. I was having this discussion (a day before the finals) with a brother around Australia never losing in the finals  and his response was great. He said, I know their performance has been good in World cups but this is not the same team that once had McGrath, Warne, Waughs, Ponting, Gilchrist etc. When he said that, I began thinking, why am I feeling so nervous then, Australia are not even half the side they were 10 years and not even 25% the side when we lost to them in 2003. A few days removed from the one-sided contest which was the finals, I'm pulled into thinking did that really happen? Again?\n\n\\- I think part of it is simply genetic, winning is a part of the Australian culture, the competitiveness, the zeal to never give up and the basic athleticism that they are taught while growing up is what separates them from the rest. The memories of seeing the various Aussie sides win in 1987, 1999, 2003, 2007, 2015 is another advantage, it makes the players feel that it can be done\n\n\\- Cummins won the toss and decided to play according to their strength (bowling) and didn't care about anything else. There are a number of instances where one feels that they should be in a position to simply exploit the opponents weakness but this was a case where Australia simply wanted to be grounded, be logical and back themselves with dew possibly becoming a factor later on. Rohit Sharma had said that he would have wanted to bat if he'd won the toss and the Aussies allowing that to happen reeks of self-belief and confidence. They say runs on the board in a knockout game is handy but Cummins' decision was one of self-confidence, belief over logic and stats!\n\n\\- Besides Rohit Sharma, Virat Kohli and to some extent KL Rahul, no one had any clue how to bat on the track. Surya Kumar Yadav was pulled back from SKY by some very intelligent bowling (slow bouncers, cutters and deliveries with zero pace on) and showed his skillset gap - He can't do nothing if there's no pace on the ball. If the ball isn't coming on to the bat, none of his 360 shots are going to work. Neither the sweep, the upper cut, the reverse sweeps, the switch hits - Nothing at all. He is a prime example of a batsman bred on IPL and not having a clue on how to bat when there's no assistance from the pitch. Him being compared to ABD is a joke!\n\n\\- Our bowling was decent but we simply didn't apply enough pressure. There were no slips, no Siraj and nothing was done differently when the momentum was with Australia. I understand that Shami was in great form and it was a bit of a gamble to give him the new ball (which partially worked with him getting a wicket) but Siraj should have also been tried within the first 10 overs when the ball was new. When nothing was working, why was the wrong-footed-in swinging menace tried? Why didn't Rohit bring himself on to bowl? None of the five bowlers were working when Head and Labuschagne were out there so why was nothing done differently? No courage or creativity!\n\n\\- I know hindsight is 20-20 but this is where leadership, calmness and being in the present are so crucial (Someone thinking of a certain captain?)\n\n\\- Our fielding was average and in typical Indian style, our shoulders began to drop as soon as the momentum was in Australia's corner. To not lose a wicket (Head's wicket 2 runs off the target doesn't count) after the score read 47-3 in a run chase of 241, is testament to giving up too early and not showing any fight\n\n&amp;#x200B;\n\nWhat's next?\n\n&amp;#x200B;\n\n\\- We really need to do some soul searching - Why does it keep happening to us in crunch games - 2003 WC final, 2014 T20 Final, 2015 Semi Final, 2019 Semi Final , 2023 Final? Why can't we keep our calm? Why do we need EVERYTHING going our way and only then we'll succeed? Why is momentum such a big deal to us? Why can't we counter-attack? Or simply stay calm? Why?!\n\n\\- There's plenty of appreciation going around as our performance was dominating, something we don't fancy from our folks especially in world cups but what should not be forgotten is we lost. Nobody cares if you reached a final, nobody cares if you came second and nobody (in the years to come) will care if you got there undefeated!\n\n\\- Mental conditioning and toughness is where we lack. We have filthy levels of richness but don't know what to do with it. The best infrastructure, the best cash cow in the IPL, Billions of dollars, but we simply are not experienced enough to be calm and don't have the gravitas that winners are to possess, we don't simply have the culture, the mindset to win in big games\n\n\\- Dhoni was an anomaly, cut from a different cloth. Winning and losing didn't matter to him too much and that is what calmness is like. Don't worry about the result, follow the process and enjoy the game - this bodes true for not just the players but the administrators as well. What was the need to tinker with the pitch when we were this unstoppable force? Why could we not have relied on the team to do their bit on their own? Why did we have to resort to using the financial muscle behind-the-scenes and use an old, slow, sluggish pitch?\n\nThe answer is we were not calm. Didn't play to our strengths. Played to the perceived weakness of the opposition (spin). We lost. Lost in a knock-out game. Lost to Australia. Lost in a final. It hurts. It really really hurts!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Must watch! Gives in sight on how politicians work.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My passport expires in about five months. \nI live in British Columbia. The tatkal service is only available for Ontario jurisdiction apparently. Can I also apply to for passport renewal with Ontario jurisdiction even if I live in BC ?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I watched some South Indian-based content creators and standup comedians on YouTube and Instagram (eg: Satshya, Jordindian, Nirmal Pillai, etc..), and I noticed that most of them make content about Tamils, Kannadigas, and Malayalis at the same time. Still, they do not make much content about Telugu people in general. Yes, there are some who create content based on Telugu but they are mostly Telugu people themselves. Is there any reason for this? Do, Tamils, Kannadigas, and Malayalis not get along with Telugu people? or are they in any way different from the remaining South Indians?\n\nOr am I missing something??
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I wanted some suggestions for a wedding venue in the mountains or the woods in india! \nHas anyone tried? And how much was the approx cost?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi everyone,\n\nI've been using Kayak to compare prices, and I've noticed that Agoda is consistently showing the lowest prices. For example, a flight that is listed at 5.5k on other sites is only 4k on Agoda.\n\nI'm a bit hesitant to book through Agoda because I've never used them before. I've heard some mixed reviews about the site, and I'm worried that there might be some legitimacy issues with the tickets they sell.\n\nI'm wondering if anyone here has used Agoda to book flight tickets in the past? If so, did you have any problems with the tickets or the booking process?\n\nThanks for your help!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A cat around our house fell down from a roof and has broken her leg. &gt;!Her leg bone has broken completely and is exposed and she has had quite a lot of blood loss.!&lt; We took her to a public veterinarian hospital but all they did was give her first aid, an injection, and tell us that we need to take her to a private veterinary hospital.\n\nMy family really doesn't have money for private hospitalization. We're barely getting by as it is. I need advice. What are my options? Please help. (I live in New Delhi)\n\nEdit: I ended up taking her to an NGO in Najafgarh (this one: https://maps.app.goo.gl/3sNUt4PyoMUG1FKd6)\n\nThe lady there basically forced us into "donating" ¹1000. I'll update if she survives... or dies. Hoping for the best.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I have extra-wide feet, and I'm looking for brands in India that offer sizes larger than UK 12. I need a size UK 13.5 but haven't found many brands in this category. If there is one, it tends to be quite expensive, around Rs. 3000 or more. The only brand I've come across is Bacca Bucci, priced somewhat below Rs. 1500, but I'm unsure about their quality.\n\nI've also seen New Balance providing shoes for UK 12 and above on their site [New Balance](https://www.nbshoesindiaonline.com/). However, it seems suspicious because even after logging in, I didn't receive any emails. Has anyone tried this website?\n\nAnother brand is [Nike](https://www.nike.com/in/), starting from Rs. 3900 for UK 13 shoes. However, there's an additional shipping cost compared to Amazon/Flipkart/Myntra.\n\nMost of these shoes are running/sneaker types. Do you have any suggestions for formal shoes?\n\n&amp;#x200B;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am sick and tired of misplacing the various ID Cards of my life. Sometimes i am required to keep them on me all the time. And add to that the several different ID cards issued by employers, institutions etc. And on top of that, the  bank related cards.\n\n**How about we have a universal All-in-One card. One card to rule them all.**  \nThis card should also have a chip for whatever security requirements. It should be updatable as easily as Aadhar card. Lets say someone doesnt have drivers license yet, so that area will be left blank. However, all other card numbers can be printed on the card. When he gets a drivers licesne, he will update his All in One Card like we updatge our Aadhar card.\n\nI know the privacy experts (and americans) hate this idea, for a lot of valid reasons, but i am the kind of guy who is ok with every spying those companies do on me. I am guilty as charged. I simply want a simpler and more convinient life. \n\nWhile i am on it, let me pitch a an idea. How about we have a **Universal Digital C.V.** A digital, govt. certified documents pdf file sort of thing, which will have all our original academic records, marksheets, pass certificates, degrees etc  , free from fraudulent degree nonsense . This way we can FINALY MOVE AWAY from carrying around our marksheets and degrees  wherever we go with the ever jhamela of attesting and fear of losing them.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Malaysia to allow visa-free entry to Indians from December\n\n https://timesofindia.indiatimes.com/india/malaysia-to-allow-visa-free-entry-to-indians-from-december/articleshow/105519225.cms
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The events of November 1971 were pivotal in the history of India. During this time, tensions were high between India and Pakistan, and significant encounters occurred, shaping the course of history.\n\nIn a significant meeting at the White House, Indian Prime Minister Indira Gandhi faced off with US President Richard Nixon. Gandhi, resolute and assertive, made it clear that India wouldn't succumb to external pressures, stating India's ability to shape its own destiny.\n\nThis tense encounter led to the cancellation of the Indo-US joint media address, with Gandhi leaving the White House in her distinctive style. Reflecting on the encounter, Henry Kissinger, then Secretary of State, suggested Gandhi could have shown more patience, to which she emphasized India's resilience and determination against external influences.\n\nUpon her return to Delhi, Gandhi summoned the opposition leader, Atal Behari Vajpayee, for a closed-door discussion. Following this meeting, Vajpayee was designated to represent India at the United Nations, despite being regarded as a critic by Gandhi.\n\nWhen questioned about his support for the government at the UN, Vajpayee eloquently compared India to a garden where unity in crisis is crucial for survival, signifying his support for the nation despite differences.\n\nSubsequently, the world witnessed the US sending tanks to Pakistan and ceasing oil supplies to India through Burma-Shell, indicating their stance against aiding India. Undeterred, India resorted to diplomatic maneuvers, securing oil supplies from Ukraine.\n\nA battle in the Thar Desert resulted in the destruction of a majority of the tanks sent by the US, showcasing India's resilience. An eighteen-day war culminated in the capture of a large number of Pakistani prisoners of war, leading to significant geopolitical shifts.\n\nIn March, Indira Gandhi recognized Bangladesh's independence, and Vajpayee hailed Gandhi as "Maa Durga," symbolizing her strength and leadership.\n\nThese events had lasting effects, including the establishment of India's own oil company, Indian Oil, and solidifying India's image as a strong nation on the global stage. India's leadership in the Non-Aligned Movement (NAM) further emphasized its strength and influence in world affairs.\n\nDespite the passage of time, these moments in history should be remembered and passed down to future generations as a testament to India's resilience and diplomatic prowess during challenging times.\n\nCredits to: https://x.com/Paul_Koshy?t=HbiyJmDBr54d-eK2EM8o-Q&amp;s=09
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I swear this is an actual question. My husband and I just had an argument where he said its not demeaning to be told to not attend puja on your period, and that while he doesn't agree with it, he won't let our future daughter attend to appease his mother because "its just one day". I already feel so yucky when his mother asks me if I'm on my period before a puja and I don't want my daughter to experience this ever.\n\nI feel like I am living in crazy land that its even a debate whether or not women feel demeaned when being told they are too 'unclean' to attend a puja at home. I feel like he severely lacks empathy or maybe he's just privileged to not have experienced such things as a man. He feels like I'm too rebellious and should pick my battles.\n\nWomen who were kept away during their periods, can you verbalise how you felt? Men, would this be a hill for you to die on for your daughters? Would you make your parents include your daughter or would you just let it go? I feel like I need outside perspective because I honestly cannot see his side on this one.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I am frontend Developer, 2023 Graduate. I have done 2 internships in past and carry 9 months of Experience with me at two different companies.\n\nTech Stack I am aware of includes - HTML, CSS, JavaScript, React.js, Redux, Typescript, Python, Sass, TailwindCss, styled-components, Git/Github.\n\nI am ready to work full-time, part-time, Freelance or on Contract Basis.\n\nI am currently in Pune, India and ready to relocate if give the right opportunity.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have numerous laptop brands atm selling their machines in our country. I am asking about which laptop brand actually provides the best for the value. I am considering these brands here- Asus, HP, Dell, Lenovo, Acer and MSI. I use a pc for gaming as well for making bills and stuff for my father's business and for my own work as well. \n\nMy experience with hp has been really bad. Once, my laptop's screen stopped working. They declared to replace it. Its cost was 22k. I got it fixed later somehow. \n\nMy brother has an hp laptop as well. His laptop's motherboard was damaged as claimed by the company and needed to be replaced costing 30k. He had to get a motherboard from a local shop for 20k.\n\nThese are instances which have occurred already. We have moved on but now, I can hardly trust hp. But for future reference, I am asking which brand you trust the most and that they actually provide good service and a good product for how much the laptops cost nowadays.\n\nI am just adding my point here for what I know about these companies from sources like quora and YouTube tech channels-\n\nMSI doesn't have service centers in most of the cities. If something wrong were to happen, you'd have to contact them via helpline or take your laptop to the nearest service center.\n\nACER has cheap laptops comparatively for the specs they offer but apparently, they do cost cutting on other components and thus you are vulnerable to experience some issues.\n\nDELL really good brand but their laptops are on the expensive side.\n\nAsus, provides good quality laptops. Is really popular among gamers and editors for their rog and zephyrus series. Idk about the TUF series but it's the series which actually lies in the budget range. (I am considering budget laptops as those which cost around 60-80k for college students as and working adults who require some good specs, and their work can't be just done with a 30k or 40k laptop.)\n\nLenovo- Really can't say anything about this brand. I have no knowledge of em. I have heard about it being bad but also about being good.\n\n&amp;#x200B;\n\nI just want to clarify that I am a student, 12th grade. My knowledge in pcs and laptops in not very vast but I do tend to keep it to a level which I think is right for now. Also, I have not mentioned any specs at all. I have only mentioned the price range. Some of these companies do have an accidental damage protection package as well. My point with this post is to only know about your experiences with the said brands, or what you know about them. What brand should one consider first when going in this price range.\n\n&amp;#x200B;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For the last one month I've been getting loads of calls and messages from different scamsters. No idea I'm being targeted but it was just a minor nuisance at best. I've had fun too, one of  them was completely confused when I told him that I was very happy the credit card service fee was going to get debited, that was clearly not part of his script lol. \n\nOne of the scams is to follow some pages on YouTube and Instagram. They then pay you have taking your details, telling you to connect to their "receptionist" on Telegram. The receptionist then pays you after you share screenshots showing that you've completed the task and share a Telegram group link. I've pocketed 200 Rs from these scamsters (one gave 150, other gave 50) and I've joined the Telegram group which has over 300 members. Not able to post messages or see the other members apart from admin unfortunately, otherwise I would have messaged the members warning them that this is a scam.\n\nSo...what should I do? I plan to remain in the group and see what they do. I have the UPI ID's of two of these scamsters but I doubt the police will be able to do shit seeing that they are so openly committing a scam. Early on when I gave the details of a scamster committing APK download scam by raising a complaint online (I had the recording, screenshots and number), the only thing that happened was that someone from their department gave a 30 minute speech to me on call about how we should be careful about such scams, never download random apps, etc. He also admited that the police find it difficult to catch these guys.\n\nSo...any good idea people? Anyway I can help the other Telegram members in that group who may not be aware it's a scam? Any ideas on what I can do to harass these scamsters?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Had a flight at 28th costing 9k.\ntried to reschedule to 5th next month which was around 11k\nthey said the reschedule would cost 16k + the already paid 9k....\nhow? what is this ?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A very good friend is going through some difficult times. After being on an edge for a long time, he has finally started with therapy. His current therapist charges him around ¹800 per session on a video call. He needs therapy and wishes to look for slightly cheaper therapist. Let me know if anybody knows someone who will charge below ¹800. His location is Mumbai, but he can attend on video calls as well.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Here are the two viewpoints that are almost a decade old:\n\nhttps://www.youtube.com/watch?v=U-YJEDxJE8g\n\nhttps://www.youtube.com/watch?v=rcflvCd_V0g\n\nThere is a saying in one of the Indian languages: "Jaisi praja waisa raja"\n\nNo point in blaming the politicians; introspection on the part of the citizens is required!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What are the best apps, which have easy to use, offline hindi speech to text. I am looking for something for my grandparents, who are partially deaf. any recommendations would be very helpful.\n\n&amp;#x200B;\n\nPreferably for android phone
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thise who have a home-bakery business or know someone. How do you deliver the cakes from your place to customer\031s place? Do you use any delivery service? How do you keep the delivery charges at reasonable rates?\n\nThanks in advance!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Anyone wanting reference of what I'm talking - [https://economictimes.indiatimes.com/news/elections/assembly-elections/rajasthan-assembly-elections/bjp-releases-party-manifesto-in-rajasthan/articleshow/105253721.cms](https://economictimes.indiatimes.com/news/elections/assembly-elections/rajasthan-assembly-elections/bjp-releases-party-manifesto-in-rajasthan/articleshow/105253721.cms)  \n\n\n[https://www.news18.com/news/india/stop-free-revdi-culture-heritage-enough-for-ups-growth-what-modi-said-at-bundelkhand-e-way-launch-5565121.html](https://www.news18.com/news/india/stop-free-revdi-culture-heritage-enough-for-ups-growth-what-modi-said-at-bundelkhand-e-way-launch-5565121.html)  \n\n\nHas any media channel questioned Modiji on this?  \n\n\nNo wonder we need so many gods.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am currently undergoing training at an MNC as a fresher since 2 months. I have been granted a visa last week and I'll be moving to the US next month for my master's. I've signed the offer letter but we don't have a bond(wasn't asked to notorize the offer letter). I am currently on a 3 month probation and I don't have any responsibilities as a trainee. Another colleague with the similar situation was asked to serve the notice period of 2 months.\n\n1. What are the exit procedures and repercussions I need to face as I'll be quitting amidst training?\n2. What are the consequences of not serving the notice period of 2 months?\n3. Is there proper reason, a way or a loophole which I can use to not be liable to any repercussions?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  15 years ago, 10 Pakistani terrorists (Lashkar-e-Taiba) infiltrated Mumbai via the sea and launched attacks at several locations, killed 166 and injured over 300 people.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am a 22 M wildlife biologist from Delhi.\nWhile pursuing my dissertation in the Palamau Tiger Reserve, i was chilling along the bank of a small pond in the middle of the forest waiting for a particular bird to arrive and like a total idiot who was bored, i put on my earphones.\nSuddenly i felt something was off and turned around to see this huge 4m Makhna (tuskless male) walking towards me.\n\nI was all alone, no network, pond on the right side, an 80 degree incline dune on the left and behind me.\n\nDecided to play it calm but this mf kept walking towards me and finally i decided that i need to make some distance.\n\nI was totally stuck there for 30 mins but thankfully this giant decided that i wasn\031t a threat and spared my life.\n\nSavdhaan rahe Satark rahe.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am a Youth Citizen of India. I am sad looking at the current political scenario. Because i have only a few choices neither of which i like.\n\nThe Big Two, so called #NDA and #INDIA are talking about everything except the actual issues which concern the youth.\n\nThey have forgotten that 65% of Indians are under 35. Where are the talks about providing employment, creating more opportunities and developing the economy.\n\nI wish more people among those 65% were concerned about their future, instead of identifying themselves with propaganda.\n\nThe only alternative to the current ruling party doesn't seem good. Why?\nBro mohabbat ki dukan se ghar nhi chalega. Nor will supporting right wing propaganda, help people like me who are concerned with the future. It will only benifit the ruling party to bulldoze their bills.\n\nWith little to no resistance due to assembly strength advantage, which i  believe undermines our spirit of democracy.\nI'm really looking for an alternative, but i think nothing else is there.\nThere is so much more to talk about.\nMaybe in my next post. #Elections\n\nPS: Jai Hind <î<ó
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hello everyone,\n\nI want to get a new laptop but in no condition to afford a new one. I looked at refurbished laptop options from Amazon. Does anyone have any prior experience with refurbished laptops ? Are they good ? Can anyone let me know the Pros and Cons of one.\n\nThank You
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I am travelling with a 5 yo and a teenager for new year.\n\nI've been to Goa 4-5 times and seen all the usual touristy places. We always stay at a resort in Calingute right next to the beach.\n\nWhat can I do differently this time? I would like to enjoy live music and dancing with the kids at a family-friendly place [like this](https://www.instagram.com/p/Cs9OFIHolh1/) .\n\nAre there any other activities we could do?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My friend (24,M) completed his BA.LLB degree this year in May, from an NLU. He has been working with a private practicing lawyer since then. He gave CAT this year, but doesn't know how can he prove his work experience during admissions and placements in future. The issue with working under such a lawyer is that there is no official joining letter. The payments too can be irregular and in cash mostly. How is one supposed to show their work ex in such a scenario?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hello guys I need advice, my sister (19) is living in a pg in thane from last year. Few months back she started getting texts on whatsapp which were like \034hi apko dekha meine..app acche lag rahe the ajj\035 and stuff like that she told me about it i called that number and i threatened that guy, he blocked me. \n\nFew months have passed last night around midnight she got a call from unknown number and he knew her name and said \034app mujhe pasand ho\035 . She told him that she is going to complain to the police and hung up. So today i took my friends phone number and called that number. He answered (true caller showed the name \034yadav\035 ) i tired to bait him. I said \034hello bhai kidhar hai \034. He replied kaun ?. I said sonu na ?. This dumb guy took the bait and said nahi \034kuldeep\035. I said mira road se na ? He said nahi *name of locality my sister is in* se hu wrong number .\n\nSo now we know his name is kuldeep yadav and my sister said she has given phone number to only two shopkeepers in the area. One is a water supplier guy who brings water(bisleri 20 litre one ) and one salon guy for a hair cut appointment.\n\nI am really worried for her safety, what can i do given the above information. Also she has a call recording from last night of him saying vulgur things. Please help and tell me what steps i can take. Sorry for the grammar im anxious
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I'm travelling to Mumbai for a few days. \nI have some questions. I'd be thankful if anyone help me with these:\n\n- what SIM card should I buy and from which operator? Is it ok to buy from airport or not?\n\n- where can I find currency exchange with fair commissions?\n\n- is there an app to order online taxi? I've found zomato for food delivery, but didn't find any for taxi.\n\n- is Public transit safe enough for two foreign travellers?\n\n- is there any restaurants with less or not spicy food? (i guess it's quite a difficult thing to ask :))\n\nIf there's any other thing that I should consider kindly let me know e\017
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Planning to buy Bosch Dishwasher. Not sure if 13-place is sufficient or if we should go for a 14-place model.   \nI understand the basic definition that 13-place will wash utensils for 13 people (13 plates, glasses etc) and 14-place model will send for 14 people worth of utensils. But this definition doesn't help. It is not always just plates and cups. Cookers, saucepan etc takes up a lot of space. I want to understand if anyone is using 13-places machine and feeling that it is too small and they should have gone for 14 places model.   \n\n\nThere is a significant cost difference b/w 13-place and 14 place models.  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I have nothing against people from these states, my girlfriend is from UP (not a great defence ik)I'm just curious. If I'm mistaken about the 'tolerance' feel free to correct me.\n\n\nThe most vegetarian states* are - Rajasthan (70-75%), Haryana (65-70%), Punjab (60-65% and Gujarat (60-65%). UP, HP and MP are around 50%. \n\n*I found different statistics so I've given a range. \n\nWhy is that we never hear of controversies or government interventions into meat eating from these states? \n\nJust google "Meat [state name] news" to see what I mean.\n\nI found nothing for Punjab, 1 or 2 old articles for Rajasthan and Haryana but a lot of articles from Gujarat and some for UP. \n\nEven though Punjab and Haryana are mostly vegetarian, I've found people to be generally tolerant of meat. As long as you keep it yourself no one cares. There's not much moral policing. You can get away with bringing it in your lunchbox to work and school. \n\nI have never been to Gujarat so I can't tell you the ground reality but the news says something.  \n\nWhen I went to UP (Mathura and Agra) \nI noticed there was less non veg street food than Ludhiana, Shimla, Chandigarh or Delhi but this is just anecdotal and isn't hard evidence. \n\n\n\nDisclaimer: While I'm technically a non vegetarian by Indian purity standards. I only eat chicken about 5-6 times/year on special occasions (not unlike many 'western vegetarians'). I don't have mutton and have never had beef, pork or seafood.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hi everyone, I am asking for an Indian friend who has a work permit for Germany. They have received a temporary job offer for Switzerland. Is it possible to hold both work permits at the same time or would my friend have to give up the German one to take the job in Switzerland? The job might be remote (and is temporary), so it would be a problem to lose the German residency.\n\nThanks in advance!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I am observing that it is getting more and more common to hear claims of important scientific inventions being made during ancient times in India. "*insert discovery/invention here* has been mentioned in the Vedas and/or Puranas, so it is likely that it was in use thousands of years ago" is something you get to hear a lot nowadays. \n\nWith that said, I am sure our scientists and engineers were busy doing cool stuff post-independence. I want to know if other redditors are aware of things that were invented in India after 1947, stuff which can be legitimately claimed as "Indian". I am not asking for stuff that was discovered/invented by Indians in other countries, especially Western countries. \n\nSo, what have we done that can be considered "novel" by global standards? Especially looking for answers from IT/computers, since we are an IT powerhouse.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I'm a BTech student and I think it's high time that I start managing my own finances. I want to learn a niche skill that will help me to earn some money while working online. So please help if you know any skill that I can learn.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Please help me find a home for Luna =O\nShe is a female indie-husky and is extremely smart and playful! She is around 8-12 weeks old and super athletic!\n\nDeworming \005 \n1st Vaccine \005 \n\nI stay in Central Delhi. Please inbox me if you are interested or have any Leads.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I was just looking at [this link](https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_number_of_physicians) on Wikipedia, which lists the number of doctors per capita. In it, you can see that India has only 8.6, whereas countries like the US(26.1), UK(31.7), Canada(26.1) and Germany(42.5) have much higher ratios.\n\nBut speaking from personal, anecdotal and news experience, I know that getting a normal GP in these countries is quite a lot harder than in India, often taking multiple days of waiting time, and finding specialists and getting complex work done, can take months or even years. By comparison, in India, neither my friends/relatives or I, have ever experienced waiting times beyond a few days. I'm just wondering why there is this statistical paradox.\n\nIs it just a product of my privilege living in an urban area, and being able to afford private hospitals(Apollo, Fortis, etc), or is there some other reason?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Question for freelancers here:\n\nI wanted to ask I received inward remittance from JP Morgan (Chase bank) to HDFC bank. \n\nThe issue is JP Morgan converted the USD to INR now I am trying to FIRC from HDFC Bank and I am not getting any help from them. What should I do in this case? \n\nI have also tried my RM to email JP Morgan and I haven\031t received any reply from them.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \n\n\n\n22M\n\n\n\n\nEvery day I feel like shit , just after opening my eyes , till closing them . Escaping from reality in every sense possible because that's what I always do . Running from the challenge.\n\n\n\n\n\n\nI never took a stand for myself or anything I loved and kept losing everything , whatever good I had . All the chances I missed because I did nothing , just sit back and let all things happen, try to run away from the reality .\n\n\n\n\n\nDidn't take any risk, never worked hard as I always thought I was gifted but fuck this mindset honestly . I'd rather be hard working and be satisfy with my efforts than being gifted and taking everything as granted.\n\n\n\n\n\nAnxiety, depression and fomo took everything over and lead everything in such a negative way that I don't have any energy to correct anything. \n\n\n\n\n\nI never had any goals and even if I had any , I didn't work any hard for them . Loved a girl but was coward , couldn't express my love watching every single guy proposing her and taking a shot to date her , I underestimated myself and got insecure , acted like a bitch everytime and lost my chance and when a guy harrassed her mentally, I couldn't do shit . I hate myself to this day and it's been 7 years since all this happened . After that I got so insecure about myself that I stopped talking to any girl and completely because socially isolated , avoiding people . What if I love a girl and I couldn't save her AGAIN , I don't deserve anyone .\n\n\n\n\n\n\n\nI cut off all my friends because of fomo as my anxiety was wayy too much to handle from the fact that they all did what I couldn't. I cut everyone off silently and never contacted them ever again . \n\n\n\n\n\n\n\nSocial anxiety and everything happening around me triggers me to my past and this whole city and people reminds me that how coward I am . How shit I am .\nI just want to leave this city and never wanna comeback.\n\n\n\n\n\n\nGot addicted to smoking so badly after promising myself for so many years that I will never smoke no matter what. Addicted to all those shitty instant gratification dopamine bullshits . \n\n\n\n\n\nI try every single time to socialize but it doesn't work . Something triggers me so badly and I come back again to zero .\n\n\n\n\n\nWhen I see the guys who ever proposed the girl I loved , I want to k!|| them all . Every single one of them . \n\n\n\n\n\nI can't describe in words how shit I feel everyday and it's looking like never ending process , headaches are so common that normal times I feel abnormal and headches are normal .\n\n\n\n\nI wish I could finish all this but Naah . \n\nWhen I see any guy being with his gf , it reminds me how I never too any chance .  Guy with good career reminds me How I never too any chance . Guys with better life than me reminds me how zi didn't do anything to make mine better . \n\n\n\n\n\nLiving in past all the time since so many years , daydreaming to cope from reality and make everything perfect in the past .\n\n\n\n\nI wish I could be lesser of a bitch I was .
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I wrote a bad 1 star review for a garbage bus operator/agency, got message from Paytm for thanking me for feedback and gave me 200 INR cashback on next bus ticket booking. But surprisingly I can't see my review under that bus? So did they not consider my review and didn't find necessary to post my review or did they deleted it gave me bribe to shut up lol?\n\n *Context:* Few ago I travelled using a AC sleeper bus with only one review of 4.9 since it was only available bus for me. It was a night journey after 11 PM It suddenly started raining that day just after I got out to reach the boarding point, well I said such a bad timing, but little did I know it was just a start. After bus started moving, AC inside bus started leaking water, so I asked operator to do something, he said he'll do something then after few more minutes the leak increased and operator said he'll ask the office for help since no other seats are available, while I was waiting for his response I had to open my umbrella to stop my seat getting more drenched in that dirty AC water, after 15-20 mins they said no other options are available right now so you can cancel the ticket and go home in this heavy rain or you have to adjust by completing this whole 5-6 hours of journey sitting on a sleeper seat which is already wet but since we had already almost left the city and operator wouldn't have enough moral concept to pay for fare way home in a heavy rain, so I had no choice but to continue my journey, I had to put blanket on the wet area, change the direction to sleep but it was uncomfortable as hell and cold at it's best.\n\nI raised this concern to Paytm help section but I got their reply after 3 hours enroute asking whether I took the journey or cancelled it. I told me the condition I was traveling in but I didn't get any response so I had to open new ticket for it but only response I got was since I availed the journey they cannot give damn about the condition it's between you and bus operators. I even tried contacting the operator office but got almost same response. \n\nSo my question is, isn't there anything I can do to send a review on their booking page? Since Paytm not interested in helping their customers and not posting reviews by their customers.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hey guys, I am working on a news(Indian to start with) comparison platform that will help people combat misinformation and media bias by  showing how  news stories are covered by different media sources with different political leanings and agendas.\n\nThe goal is to\n1. See how different media houses report on any particular news.\n2. Analyse the language/sentiment of the news(positive, negative, neutral)\n3. Hold media accountable by showing  detailed info on their reporters, owners,funding sources etc. \n4. empower people to make informed decisions based on facts and evidence.\n\nI would like to know your views on a few questions. It will help me make some key decisions. Please fill out this survey form.\nhttps://forms.gle/XnjB382tmEYWzuQs7\n\nYou can also let me know if you have any other comments or questions I should include in the form. Thanks.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Source - https://data.gov.in/
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hey everyone,\n\nI am skilled in GIS, HMS and RAS, and have done some projects where I derive inundation depths and velocities for a rainfall event in a land parcel using rainfall and topography data. Mostly, these have been for land parcels where solar or other industrial developments are proposed. I want to know how to go about getting more projects of this nature and how to build a full-fledged career out of this. Please share your experiences and advice.\n\nP.S. I am based in India but am open to projects from everywhere.\n\nThanks in advance!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cross post from another sub. All credits to original poster
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So I'm an avid coin collector. I've been collecting for the past 4 or 5 years. I don't buy any coins but I just collect all the cool ones I come across. And I inherited some old coins from my grandparents. Anyways so I have a nice collection. If I had to guess it would be around 100 different coins of from several decades. So my question is, where do I find the value of these coins and if I wanted to (I don't intend to currently), where can I find the value of these coins and where can I sell them? I see sites like numista and some other ones (can't remember their names) but those don't seem legitimate. I'm writing this cause I saw a couple of folks on here asking about their coins but if i asked about each individually it would take forever and be very boring to people who aren't that interested in coins. So like can you teach me how to get the value of my rare coins?\n\n(I don't know Hindi)\n\nTldr - How to find the value of indian coins?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hi all,\n\nHad a random thought today that if anything happened to my parents, I would have no idea what to do with regards to paperwork. Like do they have a will (and if so where), where their bank accounts are and how I should get them closed, whether they have life insurance or not, property papers etc... even the funeral side of it like what their wishes would be and where they would like their ashes to be scattered.\n\nI'm curious to know if anyone else has thought about this before and whether you did anything about it? Or if anyone has sadly gone through the loss of a parent/loved one, how did you manage all of these things alongside the grieving process? And did you have all this type of info beforehand or did you have to figure it out as time passed? \n\nTo me it seems like death is a very taboo topic but I can't help feeling like it should be discussed more openly as the kids are likely the ones that will have to manage everything in the end, and it would be a lot easier with some guidance.\n\nI get that I can just sit down and talk to my parents about this but wanted to see if there are others in the same/similar situation.\n\nEDIT: in this scenario, I'm imagining it to be a sudden/unexpected death where you may not have a chance to have these convos
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Well my grandfather spent his childhood in Hyderabad state and he always seemed to be gratefull for being there as he always told stories about his friends and collegues who's families lost everything during partition. There was violence and riots immediately after Operation Polo (Sept 1948); when India liberated Hyderabad but according to him it was far less than in Punjab, Bengal provinces or other cities. You know that stereotype of Hyderabad being heart of Ganga Jamuna Tahzeeb? My gf was a big proponent of it.\n\nFor my grandmother it was in stark contrast. She lived in a district which was hotspot for the Telangana peasant/communist rebellion so she witnessed a lot of violence and sees the time as quite violent eventhough the radcliffe line was far from there, things only got better in the 50s.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I found this while, just wondering if its of any value and when its from.\nLend me your knowledge redditors  !
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So one of my friend bought a phone from OLX (yes i know bad decision).\n\nThis phone that was sold to my friend was bought on some Flipkart some scheme or EMI (not 100% sure what this is) but they had some rule like if the customer don't pay the EMI Flipkart locks the phone until you pay the EMI. My friend was unaware of this and purchased it. \n\nNow the guy who sold him the phone stopped paying EMIs after selling the phone and now Flipkart locked it. My friend wanted to unlock the phone and called Flipkart customer care and told them he is willt to pay the remaining balance please unlock the phone. But apparently that balance has to be paid only from the account from which it was purchased. The seller's phone is switched off (not surprised). Now he can't do anything with that phone. \n\nThe guy who sold him the phone gave him a bill of similar phone with different IMEI number. My friend did not check at the time of purchase.\n\nIs there any way we can unlock the phone? Its fine even if the SIM doesn't work he will give to his grandmother for YouTube consumption. Spending 15k on a phone that is no better than a paper weight is haunting him.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hello everyone! I have completed my IGCSE abroad in 2018 but unfortunately misplaced the certificate and the statement of results during COVID time. I am applying for a certifying statement from Cambridge university from [here](https://certstat.cambridgeinternational.org/) so I would like to ask if it's accepted as proof for non ECR passport since I'm going to renew passport very soon. Thanks in advance!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I was searching for coupon codes online for Zomato and i found one "SIMPLNEW" , then I was asked for a OTP which i entered and my order has been paid , I have never heard about their app and didn't fill any other detail other than OTP, I panicked and cancelled the order.What should I do? I feel this is a bug but I'm worried , Ive heard legal actions are taken and I sure do not want legal actions to be taken ,i didn't even want them to pay for my order , how should I proceed?
 subreddit comments
     india      102
     india       21
     india       44
     india      104
     india        0
     india        3
     india      172
     india        2
     india        9
     india        2
     india        1
     india        1
     india        1
     india        8
     india       27
     india        1
     india        1
     india      159
     india       10
     india        1
     india        7
     india       62
     india        3
     india        4
     india        2
     india      124
     india       77
     india      258
     india        3
     india       11
     india       13
     india        4
     india        5
     india        2
     india       26
     india        4
     india        2
     india       13
     india      104
     india        1
     india        1
     india        1
     india       22
     india       12
     india        1
     india      115
     india       25
     india        5
     india        1
     india        1
     india       10
     india        8
     india        1
     india       88
     india        5
     india        2
     india       55
     india        5
     india        5
     india       22
     india        0
     india        2
     india        1
     india        1
     india        1
     india        1
     india       16
     india        0
     india        1
     india        1
     india        2
     india        1
     india        1
     india        1
     india        5
     india      317
     india        1
     india       97
     india       13
     india       51
     india        1
     india       29
     india        2
     india       92
     india       36
     india        0
     india        1
     india        0
     india        7
     india       73
     india        1
     india        9
     india       13
     india        3
     india       43
     india       15
     india        0
     india       25
     india        1
     india       11
                                                                                                url
     https://www.reddit.com/r/india/comments/1854t1k/big_fat_weddings_are_indias_soft_power_abroad/
    https://www.reddit.com/r/india/comments/18546p2/collapsed_indian_tunnel_had_no_safety_exit_was/
  https://www.reddit.com/r/india/comments/18537t3/bengaluru_airport_wont_ask_you_to_put_gadgets_in/
   https://www.reddit.com/r/india/comments/18527sq/ndtv_class_4_boys_attack_classmate_with_compass/
    https://www.reddit.com/r/india/comments/1850sdw/happening_tomorrow_join_us_as_we_dive_into_the/
   https://www.reddit.com/r/india/comments/18508u2/4_months_26_victims_sham_stock_scheme_pulls_off/
  https://www.reddit.com/r/india/comments/18501uq/will_rename_hyderabad_as_bhagyangar_if_bjp_comes/
                             https://www.reddit.com/r/india/comments/184yaep/decathlon_is_pathetic/
    https://www.reddit.com/r/india/comments/184xzk5/48_of_complaints_on_national_consumer_helpline/
          https://www.reddit.com/r/india/comments/184xpmh/if_you_ever_have_a_chance_to_leave_india/
        https://www.reddit.com/r/india/comments/184xpcp/nris_and_ex_nris_how_do_you_view_india_now/
   https://www.reddit.com/r/india/comments/184xmtm/iffi_censorship_row_late_bjp_mlas_poem_on_caste/
         https://www.reddit.com/r/india/comments/184x0gs/its_over_what_are_we_going_to_do_about_it/
  https://www.reddit.com/r/india/comments/184wlwb/apart_from_jaitely_gadkari_no_one_i_inside_modis/
   https://www.reddit.com/r/india/comments/184wc7a/anyone_who_wants_to_adopt_these_cuties_gurugram/
               https://www.reddit.com/r/india/comments/184w9oi/indian_passport_renewal_from_canada/
   https://www.reddit.com/r/india/comments/184w24c/ever_thought_about_the_lack_of_telugu_themes_in/
   https://www.reddit.com/r/india/comments/184vgid/troubled_by_growing_trend_among_big_families_to/
                         https://www.reddit.com/r/india/comments/184v53v/wedding_venue_suggestions/
      https://www.reddit.com/r/india/comments/184v1s0/is_agoda_reliable_for_booking_flight_tickets/
 https://www.reddit.com/r/india/comments/184u8th/tiger_from_rajasthan_enters_kuno_national_park_no/
     https://www.reddit.com/r/india/comments/184tqtg/bar_on_evening_classes_for_girls_is_likely_to/
              https://www.reddit.com/r/india/comments/1842n27/cat_heavily_injured_need_urgent_help/
 https://www.reddit.com/r/india/comments/1843ihg/men_in_india_who_have_extrawide_feet_where_do_you/
                https://www.reddit.com/r/india/comments/1844635/why_dont_we_have_an_alloneone_card/
  https://www.reddit.com/r/india/comments/184t3du/malaysia_to_allow_visafree_entry_to_indians_from/
      https://www.reddit.com/r/india/comments/184s016/the_month_of_november_1971_52_years_ago_very/
     https://www.reddit.com/r/india/comments/184eozy/do_you_consider_it_degrading_to_women_to_tell/
  https://www.reddit.com/r/india/comments/184he2h/hey_guys_can_someone_help_me_with_a_referral_for/
           https://www.reddit.com/r/india/comments/184ih7x/which_laptop_brand_is_the_best_in_india/
  https://www.reddit.com/r/india/comments/184jydx/scamsters_paid_me_money_for_their_tasks_what_now/
                        https://www.reddit.com/r/india/comments/184kucw/flight_rescheduling_indigo/
                https://www.reddit.com/r/india/comments/184ncba/a_friend_needs_to_continue_therapy/
       https://www.reddit.com/r/india/comments/184po5a/video_rescuers_try_new_tack_to_reach_indian/
             https://www.reddit.com/r/india/comments/184hsx2/why_75_of_indian_women_are_unemployed/
     https://www.reddit.com/r/india/comments/184hpyc/why_i_am_not_just_an_indian_i_carry_an_indian/
     https://www.reddit.com/r/india/comments/184ew5s/cousin_took_a_loan_but_couldnt_pay_it_back_as/
 https://www.reddit.com/r/india/comments/184etzb/the_benefits_of_a_lousy_passport_having_to_choose/
 https://www.reddit.com/r/india/comments/184ersl/india_wont_disappoint_says_modi_as_he_invites_the/
   https://www.reddit.com/r/india/comments/184dt7b/there_is_going_to_be_loksabha_election_in_india/
       https://www.reddit.com/r/india/comments/184d3tw/hindi_speech_to_text_app_recommendation_for/
    https://www.reddit.com/r/india/comments/184d3hw/question_for_all_having_homebakery_business_in/
       https://www.reddit.com/r/india/comments/1846yna/15_years_of_2611_one_of_the_heroe_who_saved/
       https://www.reddit.com/r/india/comments/1847t97/just_a_year_after_modijis_speech_on_freebie/
 https://www.reddit.com/r/india/comments/1847319/what_are_the_employment_laws_regarding_quitting_a/
                   https://www.reddit.com/r/india/comments/1847as0/2611_never_forgive_never_forget/
                                 https://www.reddit.com/r/india/comments/1847231/lucky_to_be_alive/
 https://www.reddit.com/r/india/comments/186gl5b/new_sim_card_rules_to_be_followed_in_india_from_1/
        https://www.reddit.com/r/india/comments/186gj69/a_hopless_indian_youth_complains_about_the/
                    https://www.reddit.com/r/india/comments/186ghqs/refurbished_laptop_from_amazon/
     https://www.reddit.com/r/india/comments/186gamc/milk_egg_meat_wool_output_increased_in_202223/
      https://www.reddit.com/r/india/comments/186g8im/cancer_deaths_in_india_due_to_avoidable_risk/
   https://www.reddit.com/r/india/comments/186fxlk/what_to_do_something_different_in_goa_this_time/
      https://www.reddit.com/r/india/comments/186fanc/experts_tell_what_north_india_can_learn_from/
    https://www.reddit.com/r/india/comments/186f74l/all_41_indian_labourers_rescued_from_collapsed/
   https://www.reddit.com/r/india/comments/1861kga/how_to_prove_work_experience_when_working_for_a/
                 https://www.reddit.com/r/india/comments/1861jhl/unkown_caller_harassing_my_sister/
                 https://www.reddit.com/r/india/comments/185x62n/instructions_for_a_trip_to_mumbai/
                      https://www.reddit.com/r/india/comments/185vrh4/confused_dishwasher_in_india/
  https://www.reddit.com/r/india/comments/185vqb7/why_are_other_vegetarian_states_more_tolerant_of/
     https://www.reddit.com/r/india/comments/186d9yz/hiring_stress_campuses_see_delayed_onboarding/
    https://www.reddit.com/r/india/comments/186aoio/would_love_some_information_on_these_thank_you/
    https://www.reddit.com/r/india/comments/1869jtm/question_for_indian_expats_two_work_permits_at/
        https://www.reddit.com/r/india/comments/1867xqy/what_are_some_of_the_top_indian_inventions/
        https://www.reddit.com/r/india/comments/1866nb0/how_can_i_earn_as_a_college_student_online/
      https://www.reddit.com/r/india/comments/1866mvw/actor_randeep_hooda_to_marry_lin_laishram_on/
                         https://www.reddit.com/r/india/comments/1866i8h/adoption_in_delhi_ncr_dog/
       https://www.reddit.com/r/india/comments/1866hlw/indian_air_force_eyes_future_frontiers_with/
              https://www.reddit.com/r/india/comments/1866fe1/question_regarding_doctor_statistics/
    https://www.reddit.com/r/india/comments/18657df/adani_group_looking_to_exit_fmcg_joint_venture/
                   https://www.reddit.com/r/india/comments/18646ap/freelancers_firc_document_issue/
             https://www.reddit.com/r/india/comments/18643z1/everyday_i_feel_like_a_bitch_a_coward/
                         https://www.reddit.com/r/india/comments/1863blq/does_paytm_delete_reviews/
    https://www.reddit.com/r/india/comments/1862ax1/what_is_your_opinion_on_the_misinformation_and/
  https://www.reddit.com/r/india/comments/18622x0/norms_flouted_tectonic_faultlines_ignored_lapses/
       https://www.reddit.com/r/india/comments/1861sm8/statistics_of_registered_rape_cases_in_2021/
                            https://www.reddit.com/r/india/comments/1860yge/getting_hydrology_gigs/
                   https://www.reddit.com/r/india/comments/1860iiz/lorum_imposum_executive_manager/
          https://www.reddit.com/r/india/comments/185zmh6/malayali_space_scientist_vr_lalithambika/
      https://www.reddit.com/r/india/comments/185z9ap/meet_arnold_dix_tunnelling_expert_india_will/
    https://www.reddit.com/r/india/comments/185yqv9/lok_sabha_polls_bjp_says_will_contest_26_of_48/
           https://www.reddit.com/r/india/comments/185yjiz/india_is_seeing_a_massive_aviation_boom/
    https://www.reddit.com/r/india/comments/185ydae/whats_an_accurate_way_to_find_out_the_value_of/
     https://www.reddit.com/r/india/comments/185ybj8/all_41_workers_trapped_inside_silkyara_tunnel/
                  https://www.reddit.com/r/india/comments/185xwdu/how_can_we_better_plan_for_death/
  https://www.reddit.com/r/india/comments/185x8t6/mazdoorkisan_mahapadav_calls_for_bigger_movement/
      https://www.reddit.com/r/india/comments/185wn99/explained_what_is_the_new_discard_income_tax/
    https://www.reddit.com/r/india/comments/185wkn0/iphone_maker_hon_hai_plans_16_billion_in_india/
     https://www.reddit.com/r/india/comments/185wkak/india_to_launch_firstever_auction_of_critical/
      https://www.reddit.com/r/india/comments/185voqr/2_dalits_beaten_up_urinated_on_in_tamil_nadu/
   https://www.reddit.com/r/india/comments/185vm8k/centre_squeezing_funds_for_sc_scholarship_leads/
 https://www.reddit.com/r/india/comments/185vko9/gujarat_dalit_woman_beaten_to_death_by_men_booked/
            https://www.reddit.com/r/india/comments/185u98j/where_was_your_family_during_partition/
        https://www.reddit.com/r/india/comments/185ucgr/how_and_why_india_checkmated_chinese_giant/
                         https://www.reddit.com/r/india/comments/185u2xt/is_this_note_of_any_value/
   https://www.reddit.com/r/india/comments/185tb0u/indian_researchers_paid_17mn_to_publish_in_open/
  https://www.reddit.com/r/india/comments/185t98h/highdose_covid_treatment_less_effective_in_india/
               https://www.reddit.com/r/india/comments/185sdc9/olx_sellers_using_flipkart_for_scam/
   https://www.reddit.com/r/india/comments/185sb64/igcse_certifying_statement_for_non_ecr_passport/
      https://www.reddit.com/r/india/comments/185rj8t/panicking_because_simplpay_paid_for_my_order/
# accessing tokens
india_summary$Tokens
  [1]   17   16   14   25   29   13   14  139   13  314  277   14 1584   34    9
 [16]   48  138   19   33  127   12   13  171  197  312   19  447  245  140  538
 [31]  376   46   91   53    8   59   22   21   33   68   62   55   19   53  168
 [46]   39  164   13  224   61   14    9   92   13    8  110  300  137  128  322
 [61]    7   10   97  181   60   12   59   15  191   10   85  594  464  174   38
 [76]   11  110   15   10   12   18    7  222   13  279   10   21   12   18   10
 [91]   13   17  156   17   30   18   11  245   77  112

Looking at the corpus metadata:

# corpus metadata
docvars(hindutvarises_corpus)
      date_utc  timestamp
1   2022-03-19 1647689618
2   2022-03-18 1647601918
3   2022-03-18 1647577014
4   2022-03-15 1647305454
5   2022-03-14 1647257140
6   2022-03-12 1647069338
7   2022-03-11 1647032095
8   2022-02-20 1645330940
9   2022-02-18 1645212184
10  2022-02-16 1644990210
11  2022-02-13 1644712889
12  2022-02-11 1644606337
13  2022-02-07 1644261138
14  2022-02-04 1643961669
15  2022-01-26 1643178671
16  2022-01-25 1643087624
17  2022-01-23 1642918845
18  2022-01-19 1642587276
19  2022-01-16 1642322472
20  2022-01-16 1642309500
21  2022-01-15 1642239092
22  2022-01-15 1642215827
23  2022-01-14 1642149876
24  2022-01-11 1641937164
25  2022-07-04 1656942739
26  2022-07-04 1656911586
27  2022-07-04 1656898801
28  2022-07-03 1656847527
29  2022-07-03 1656843903
30  2022-07-03 1656823640
31  2022-07-02 1656777269
32  2022-07-02 1656769186
33  2022-07-01 1656699359
34  2022-07-01 1656698050
35  2022-07-01 1656687408
36  2022-07-01 1656676017
37  2022-06-28 1656413967
38  2022-06-27 1656354651
39  2022-06-27 1656354470
40  2022-06-27 1656331093
41  2022-06-25 1656195035
42  2022-06-25 1656147207
43  2022-06-16 1655407487
44  2022-06-14 1655178284
45  2022-06-12 1655054574
46  2022-06-12 1655026939
47  2022-06-10 1654886541
48  2022-06-10 1654866314
49  2022-06-10 1654858829
50  2022-06-10 1654833544
51  2022-06-09 1654786038
52  2022-06-07 1654636860
53  2022-06-07 1654577223
54  2022-06-06 1654481882
55  2022-06-05 1654454482
56  2022-06-05 1654448369
57  2022-06-04 1654349830
58  2022-06-03 1654274291
59  2022-06-03 1654265435
60  2022-06-01 1654089746
61  2022-06-01 1654084163
62  2022-05-31 1653961917
63  2022-05-30 1653903027
64  2022-05-26 1653585644
65  2022-05-25 1653493125
66  2022-05-25 1653492815
67  2022-05-24 1653361222
68  2022-05-21 1653119674
69  2022-05-20 1653019823
70  2022-05-18 1652884205
71  2022-05-17 1652814448
72  2022-05-16 1652734503
73  2022-05-12 1652372063
74  2022-05-12 1652346534
75  2022-05-10 1652185553
76  2022-05-08 1652043900
77  2022-05-06 1651858996
78  2022-05-04 1651693570
79  2022-05-04 1651658169
80  2022-05-03 1651612635
81  2022-05-03 1651594192
82  2022-04-29 1651192465
83  2022-04-24 1650817988
84  2022-04-23 1650714321
85  2022-04-23 1650710989
86  2022-04-23 1650707825
87  2022-04-22 1650650502
88  2022-04-21 1650555667
89  2022-04-20 1650476736
90  2022-04-20 1650457648
91  2022-04-19 1650388074
92  2022-04-19 1650375768
93  2022-04-19 1650356164
94  2022-04-18 1650292829
95  2022-04-17 1650204691
96  2022-04-16 1650112558
97  2022-04-15 1650029572
98  2022-04-15 1650002739
99  2022-04-13 1649867713
100 2022-04-11 1649681057
101 2022-04-11 1649675174
102 2022-04-11 1649661098
103 2022-04-10 1649600386
104 2022-04-09 1649479220
105 2022-04-08 1649399067
106 2022-04-08 1649394458
107 2022-04-07 1649340180
108 2022-04-07 1649329991
109 2022-04-05 1649151113
110 2022-04-05 1649147106
111 2022-04-04 1649075323
112 2022-04-03 1648958334
113 2022-03-29 1648568693
114 2022-03-29 1648565766
115 2022-03-28 1648483581
116 2022-03-26 1648277149
117 2022-03-24 1648114922
118 2022-03-23 1648015543
119 2022-03-21 1647847367
120 2022-03-20 1647795052
121 2022-03-20 1647783163
122 2022-03-20 1647750758
123 2022-03-20 1647746941
124 2022-03-20 1647745685
125 2023-01-27 1674833796
126 2023-01-26 1674746707
127 2023-01-24 1674589381
128 2023-01-23 1674512588
129 2023-01-22 1674365978
130 2023-01-21 1674291929
131 2023-01-20 1674227247
132 2023-01-20 1674225445
133 2023-01-19 1674106994
134 2023-01-18 1674054055
135 2023-01-16 1673867451
136 2023-01-14 1673707695
137 2023-01-14 1673695040
138 2023-01-14 1673692385
139 2023-01-13 1673592144
140 2023-01-13 1673591811
141 2023-01-13 1673589156
142 2023-01-12 1673546365
143 2023-01-12 1673528640
144 2023-01-12 1673500955
145 2023-01-11 1673443257
146 2023-01-10 1673358162
147 2023-01-10 1673326989
148 2023-01-10 1673320495
149 2023-01-08 1673199131
150 2023-01-08 1673159918
151 2023-01-07 1673097483
152 2023-01-07 1673080095
153 2023-01-07 1673073278
154 2023-01-06 1673031907
155 2023-01-06 1673026648
156 2023-01-06 1673005976
157 2023-01-05 1672932340
158 2023-01-04 1672856141
159 2023-01-04 1672817822
160 2023-01-03 1672730148
161 2023-01-02 1672633158
162 2022-12-31 1672512714
163 2022-12-27 1672127053
164 2022-12-25 1671963275
165 2022-12-25 1671959667
166 2022-12-24 1671864880
167 2022-12-20 1671563202
168 2022-12-20 1671549420
169 2022-12-17 1671275128
170 2022-12-16 1671213249
171 2022-12-15 1671083289
172 2022-10-22 1666412079
173 2022-09-23 1663956330
174 2022-09-23 1663913885
175 2022-09-23 1663912381
176 2022-09-22 1663888563
177 2022-09-22 1663860999
178 2022-09-20 1663668836
179 2022-09-15 1663269304
180 2022-09-13 1663089693
181 2022-09-11 1662871564
182 2022-09-10 1662789289
183 2022-09-09 1662752637
184 2022-09-09 1662706135
185 2022-09-08 1662653585
186 2022-09-08 1662649760
187 2022-09-06 1662494275
188 2022-09-06 1662488927
189 2022-09-04 1662283932
190 2022-09-04 1662265095
191 2022-09-02 1662119344
192 2022-09-01 1662029283
193 2022-09-01 1662009183
194 2022-08-27 1661580236
195 2022-08-24 1661351923
196 2022-08-24 1661346929
197 2022-08-23 1661276483
198 2022-08-23 1661260357
199 2022-08-15 1660574448
200 2022-08-15 1660554569
201 2022-08-09 1660042832
202 2022-08-05 1659730063
203 2022-08-02 1659429367
204 2022-07-30 1659206577
205 2022-07-29 1659111525
206 2022-07-27 1658919673
207 2022-07-26 1658864879
208 2022-07-25 1658717485
209 2022-07-23 1658588783
210 2022-07-23 1658570320
211 2022-07-21 1658432356
212 2022-07-21 1658381188
213 2022-07-20 1658317468
214 2022-07-16 1657941526
215 2022-07-14 1657785208
216 2022-07-13 1657719486
217 2022-07-11 1657515930
218 2022-07-10 1657446442
219 2022-07-10 1657423862
220 2022-07-08 1657284107
221 2022-07-06 1657128813
222 2022-07-05 1657044253
223 2022-07-05 1657005137
224 2022-07-05 1657000910
225 2023-04-01 1680361804
226 2023-04-01 1680350339
227 2023-04-01 1680349590
228 2023-04-01 1680345722
229 2023-04-01 1680340801
230 2023-04-01 1680331812
231 2023-04-01 1680331552
232 2023-04-01 1680330386
233 2023-04-01 1680329093
234 2023-03-30 1680158114
235 2023-03-29 1680073338
236 2023-03-28 1680022574
237 2023-03-28 1679984938
238 2023-03-27 1679908444
239 2023-03-26 1679844113
240 2023-03-26 1679794247
241 2023-03-25 1679739465
242 2023-03-24 1679681756
243 2023-03-23 1679562858
244 2023-03-23 1679540426
245 2023-03-22 1679496063
246 2023-03-21 1679419958
247 2023-03-21 1679412142
248 2023-03-21 1679404690
249 2023-03-21 1679380126
250 2023-03-20 1679336842
251 2023-03-20 1679285415
252 2023-03-19 1679240331
253 2023-03-18 1679148945
254 2023-03-18 1679123169
255 2023-03-16 1678942314
256 2023-03-15 1678895980
257 2023-03-15 1678864484
258 2023-03-14 1678788116
259 2023-03-14 1678776211
260 2023-03-13 1678697631
261 2023-03-10 1678474298
262 2023-03-10 1678439949
263 2023-03-09 1678387740
264 2023-03-09 1678365257
265 2023-03-08 1678262856
266 2023-03-08 1678254850
267 2023-03-07 1678183570
268 2023-03-07 1678174441
269 2023-03-06 1678121262
270 2023-03-06 1678090871
271 2023-03-06 1678078559
272 2023-03-05 1678037835
273 2023-03-05 1678025054
274 2023-03-05 1678006893
275 2023-03-04 1677950503
276 2023-03-04 1677926879
277 2023-03-04 1677921706
278 2023-03-03 1677876213
279 2023-03-02 1677767960
280 2023-03-02 1677760561
281 2023-03-02 1677756557
282 2023-03-02 1677752699
283 2023-03-02 1677747483
284 2023-03-01 1677698253
285 2023-03-01 1677695018
286 2023-02-28 1677597020
287 2023-02-26 1677426992
288 2023-02-26 1677408669
289 2023-02-26 1677380863
290 2023-02-25 1677299554
291 2023-02-24 1677258726
292 2023-02-23 1677168259
293 2023-02-23 1677123444
294 2023-02-22 1677080336
295 2023-02-21 1676993655
296 2023-02-21 1676993387
297 2023-02-20 1676904695
298 2023-02-20 1676896708
299 2023-02-19 1676779459
300 2023-02-18 1676709865
301 2023-02-17 1676634763
302 2023-02-17 1676633792
303 2023-02-17 1676624285
304 2023-02-17 1676605857
305 2023-02-15 1676456031
306 2023-02-14 1676393315
307 2023-02-13 1676306809
308 2023-02-10 1676025626
309 2023-02-08 1675872272
310 2023-02-08 1675822427
311 2023-02-08 1675821197
312 2023-02-07 1675782534
313 2023-02-06 1675678496
314 2023-02-05 1675584128
315 2023-02-05 1675577244
316 2023-02-05 1675571852
317 2023-02-04 1675489626
318 2023-02-03 1675436504
319 2023-02-01 1675268920
320 2023-01-31 1675175457
321 2023-01-31 1675155568
322 2023-01-30 1675094286
323 2023-01-29 1674979431
324 2023-01-28 1674883352
325 2023-05-10 1683702480
326 2023-05-10 1683697213
327 2023-05-10 1683693329
328 2023-05-09 1683649432
329 2023-05-09 1683648197
330 2023-05-09 1683645787
331 2023-05-09 1683641282
332 2023-05-09 1683633351
333 2023-05-09 1683631974
334 2023-05-09 1683619119
335 2023-05-09 1683615876
336 2023-05-08 1683571292
337 2023-05-08 1683554545
338 2023-05-08 1683524664
339 2023-05-07 1683490783
340 2023-05-07 1683466730
341 2023-05-07 1683442964
342 2023-05-06 1683395068
343 2023-05-06 1683387329
344 2023-05-06 1683384779
345 2023-05-06 1683376551
346 2023-05-06 1683356639
347 2023-05-06 1683351612
348 2023-05-06 1683338614
349 2023-05-05 1683326580
350 2023-05-05 1683291540
351 2023-05-05 1683270672
352 2023-05-04 1683221758
353 2023-05-04 1683208232
354 2023-05-04 1683177989
355 2023-05-04 1683163134
356 2023-05-04 1683163017
357 2023-05-03 1683092110
358 2023-05-02 1683028056
359 2023-05-02 1683027914
360 2023-05-02 1683012631
361 2023-05-01 1682952058
362 2023-05-01 1682931701
363 2023-05-01 1682911490
364 2023-04-30 1682876428
365 2023-04-30 1682868862
366 2023-04-30 1682868510
367 2023-04-30 1682862785
368 2023-04-30 1682862102
369 2023-04-30 1682856467
370 2023-04-30 1682821804
371 2023-04-30 1682815269
372 2023-04-29 1682769329
373 2023-04-29 1682748134
374 2023-04-28 1682703162
375 2023-04-27 1682573064
376 2023-04-26 1682513728
377 2023-04-26 1682493370
378 2023-04-25 1682441465
379 2023-04-25 1682405137
380 2023-04-24 1682318035
381 2023-04-23 1682266167
382 2023-04-23 1682219991
383 2023-04-22 1682156954
384 2023-04-22 1682136001
385 2023-04-22 1682124792
386 2023-04-21 1682099967
387 2023-04-21 1682058934
388 2023-04-21 1682056040
389 2023-04-20 1681975264
390 2023-04-20 1681957160
391 2023-04-19 1681929879
392 2023-04-19 1681887003
393 2023-04-18 1681828198
394 2023-04-18 1681809336
395 2023-04-17 1681728120
396 2023-04-17 1681725458
397 2023-04-16 1681613860
398 2023-04-15 1681518599
399 2023-04-14 1681467210
400 2023-04-14 1681466516
401 2023-04-13 1681398251
402 2023-04-13 1681377306
403 2023-04-13 1681365690
404 2023-04-12 1681323657
405 2023-04-12 1681293452
406 2023-04-11 1681195986
407 2023-04-11 1681193879
408 2023-04-11 1681177345
409 2023-04-10 1681163455
410 2023-04-10 1681144715
411 2023-04-10 1681115631
412 2023-04-10 1681096746
413 2023-04-09 1681035300
414 2023-04-09 1681016079
415 2023-04-07 1680891947
416 2023-04-07 1680868742
417 2023-04-07 1680861944
418 2023-04-06 1680801331
419 2023-04-06 1680779744
420 2023-04-05 1680718885
421 2023-04-05 1680679739
422 2023-04-05 1680673995
423 2023-04-04 1680615263
424 2023-04-04 1680607229
425 2023-06-10 1686375688
426 2023-06-10 1686364819
427 2023-06-10 1686363379
428 2023-06-09 1686312231
429 2023-06-09 1686304186
430 2023-06-09 1686294355
431 2023-06-08 1686214153
432 2023-06-08 1686196872
433 2023-06-08 1686189503
434 2023-06-07 1686177662
435 2023-06-07 1686128719
436 2023-06-07 1686116618
437 2023-06-07 1686116474
438 2023-06-06 1686026436
439 2023-06-05 1685959842
440 2023-06-05 1685939774
441 2023-06-05 1685934448
442 2023-06-04 1685891986
443 2023-06-03 1685783673
444 2023-06-02 1685739700
445 2023-06-02 1685690281
446 2023-06-02 1685685876
447 2023-06-01 1685643037
448 2023-06-01 1685602529
449 2023-05-31 1685529022
450 2023-05-31 1685497947
451 2023-05-30 1685480067
452 2023-05-30 1685428658
453 2023-05-29 1685344173
454 2023-05-29 1685334477
455 2023-05-28 1685318320
456 2023-05-27 1685170120
457 2023-05-26 1685093459
458 2023-05-26 1685066553
459 2023-05-25 1685029354
460 2023-05-25 1685029273
461 2023-05-24 1684965170
462 2023-05-24 1684964583
463 2023-05-24 1684920682
464 2023-05-24 1684912260
465 2023-05-23 1684855235
466 2023-05-23 1684852475
467 2023-05-23 1684829089
468 2023-05-23 1684828832
469 2023-05-23 1684825160
470 2023-05-22 1684772074
471 2023-05-22 1684750254
472 2023-05-22 1684739407
473 2023-05-21 1684679952
474 2023-05-21 1684654544
475 2023-05-20 1684602229
476 2023-05-20 1684595479
477 2023-05-20 1684569213
478 2023-05-19 1684504981
479 2023-05-18 1684419652
480 2023-05-18 1684400278
481 2023-05-18 1684393906
482 2023-05-17 1684343992
483 2023-05-17 1684336039
484 2023-05-17 1684335864
485 2023-05-17 1684308754
486 2023-05-16 1684254366
487 2023-05-16 1684223867
488 2023-05-16 1684218869
489 2023-05-15 1684149732
490 2023-05-15 1684148302
491 2023-05-15 1684136362
492 2023-05-15 1684130234
493 2023-05-14 1684045334
494 2023-05-14 1684031627
495 2023-05-14 1684027572
496 2023-05-13 1683999845
497 2023-05-13 1683989824
498 2023-05-13 1683969545
499 2023-05-13 1683961005
500 2023-05-13 1683960226
501 2023-05-13 1683959155
502 2023-05-13 1683953674
503 2023-05-13 1683952273
504 2023-05-13 1683936307
505 2023-05-12 1683910162
506 2023-05-12 1683909237
507 2023-05-12 1683905326
508 2023-05-12 1683889525
509 2023-05-12 1683888250
510 2023-05-12 1683879291
511 2023-05-12 1683877427
512 2023-05-12 1683875707
513 2023-05-12 1683869934
514 2023-05-12 1683864032
515 2023-05-12 1683860627
516 2023-05-11 1683815420
517 2023-05-11 1683809662
518 2023-05-11 1683800112
519 2023-05-11 1683797878
520 2023-05-11 1683779146
521 2023-05-10 1683732048
522 2023-05-10 1683725099
523 2023-05-10 1683710519
524 2023-05-10 1683707563
525 2023-07-21 1689961333
526 2023-07-20 1689867586
527 2023-07-19 1689789023
528 2023-07-19 1689779566
529 2023-07-18 1689682816
530 2023-07-18 1689656456
531 2023-07-17 1689604142
532 2023-07-17 1689598858
533 2023-07-17 1689562996
534 2023-07-16 1689510475
535 2023-07-15 1689426089
536 2023-07-15 1689424821
537 2023-07-14 1689336807
538 2023-07-14 1689318113
539 2023-07-13 1689255827
540 2023-07-13 1689235313
541 2023-07-13 1689232303
542 2023-07-12 1689170528
543 2023-07-12 1689164292
544 2023-07-12 1689142858
545 2023-07-11 1689092801
546 2023-07-11 1689089254
547 2023-07-11 1689069161
548 2023-07-11 1689055306
549 2023-07-10 1688994684
550 2023-07-10 1688974394
551 2023-07-09 1688908210
552 2023-07-09 1688867918
553 2023-07-08 1688819982
554 2023-07-08 1688799875
555 2023-07-08 1688798336
556 2023-07-07 1688734257
557 2023-07-07 1688712746
558 2023-07-07 1688712546
559 2023-07-06 1688652396
560 2023-07-06 1688639746
561 2023-07-06 1688630512
562 2023-07-06 1688623920
563 2023-07-05 1688584040
564 2023-07-05 1688566797
565 2023-07-05 1688558053
566 2023-07-05 1688552227
567 2023-07-05 1688534615
568 2023-07-05 1688530596
569 2023-07-04 1688453369
570 2023-07-03 1688390730
571 2023-07-03 1688357595
572 2023-07-03 1688355928
573 2023-07-02 1688290378
574 2023-07-02 1688268370
575 2023-07-01 1688210745
576 2023-06-30 1688120977
577 2023-06-30 1688104752
578 2023-06-29 1688045704
579 2023-06-29 1688041118
580 2023-06-29 1688001192
581 2023-06-29 1687999633
582 2023-06-28 1687959872
583 2023-06-28 1687933458
584 2023-06-27 1687878141
585 2023-06-27 1687875212
586 2023-06-27 1687874189
587 2023-06-27 1687848013
588 2023-06-27 1687846416
589 2023-06-26 1687792097
590 2023-06-26 1687774873
591 2023-06-26 1687772280
592 2023-06-26 1687762100
593 2023-06-26 1687748291
594 2023-06-24 1687634805
595 2023-06-24 1687604941
596 2023-06-24 1687598900
597 2023-06-24 1687590135
598 2023-06-23 1687556428
599 2023-06-23 1687548038
600 2023-06-22 1687477432
601 2023-06-22 1687432777
602 2023-06-21 1687374435
603 2023-06-21 1687351686
604 2023-06-21 1687323810
605 2023-06-20 1687263143
606 2023-06-20 1687248364
607 2023-06-20 1687245602
608 2023-06-20 1687244718
609 2023-06-20 1687240894
610 2023-06-19 1687159498
611 2023-06-18 1687108625
612 2023-06-18 1687078789
613 2023-06-18 1687072213
614 2023-06-18 1687063334
615 2023-06-17 1686987144
616 2023-06-17 1686984661
617 2023-06-16 1686898772
618 2023-06-15 1686819136
619 2023-06-14 1686742038
620 2023-06-13 1686658334
621 2023-06-13 1686641163
622 2023-06-12 1686552946
623 2023-06-11 1686461376
624 2023-06-11 1686444747
625 2023-08-14 1692012574
626 2023-08-14 1691999336
627 2023-08-14 1691980782
628 2023-08-13 1691931511
629 2023-08-12 1691843436
630 2023-08-11 1691756313
631 2023-08-11 1691734047
632 2023-08-10 1691704367
633 2023-08-10 1691669813
634 2023-08-10 1691649427
635 2023-08-09 1691593976
636 2023-08-09 1691575444
637 2023-08-09 1691575163
638 2023-08-09 1691574052
639 2023-08-09 1691567579
640 2023-08-08 1691484045
641 2023-08-08 1691477189
642 2023-08-08 1691464616
643 2023-08-08 1691463422
644 2023-08-07 1691432163
645 2023-08-07 1691419918
646 2023-08-07 1691415010
647 2023-08-07 1691413181
648 2023-08-07 1691391382
649 2023-08-06 1691326052
650 2023-08-06 1691324717
651 2023-08-06 1691324186
652 2023-08-06 1691311772
653 2023-08-06 1691308172
654 2023-08-06 1691286303
655 2023-08-06 1691285452
656 2023-08-05 1691253322
657 2023-08-05 1691249310
658 2023-08-05 1691241945
659 2023-08-05 1691240167
660 2023-08-05 1691232476
661 2023-08-05 1691216317
662 2023-08-04 1691160266
663 2023-08-04 1691157076
664 2023-08-04 1691148308
665 2023-08-03 1691067415
666 2023-08-03 1691056768
667 2023-08-03 1691053721
668 2023-08-03 1691045100
669 2023-08-02 1691007542
670 2023-08-02 1690997621
671 2023-08-02 1690994567
672 2023-08-02 1690988475
673 2023-08-02 1690981336
674 2023-08-02 1690981006
675 2023-08-02 1690980580
676 2023-08-02 1690980525
677 2023-08-02 1690966383
678 2023-08-02 1690962665
679 2023-08-02 1690959950
680 2023-08-01 1690895524
681 2023-08-01 1690895144
682 2023-07-31 1690811701
683 2023-07-31 1690789285
684 2023-07-31 1690780398
685 2023-07-30 1690760400
686 2023-07-30 1690729722
687 2023-07-30 1690719534
688 2023-07-30 1690717438
689 2023-07-29 1690634567
690 2023-07-29 1690626078
691 2023-07-29 1690626229
692 2023-07-29 1690626566
693 2023-07-29 1690615578
694 2023-07-28 1690550000
695 2023-07-28 1690525353
696 2023-07-28 1690539148
697 2023-07-28 1690534160
698 2023-07-28 1690531468
699 2023-07-28 1690520520
700 2023-07-27 1690498530
701 2023-07-27 1690488193
702 2023-07-27 1690468332
703 2023-07-27 1690463923
704 2023-07-27 1690440322
705 2023-07-26 1690377608
706 2023-07-26 1690371333
707 2023-07-25 1690309926
708 2023-07-25 1690307517
709 2023-07-25 1690291354
710 2023-07-25 1690254204
711 2023-07-24 1690205300
712 2023-07-24 1690185077
713 2023-07-24 1690184239
714 2023-07-24 1690181571
715 2023-07-24 1690180999
716 2023-07-23 1690156624
717 2023-07-23 1690127233
718 2023-07-23 1690118558
719 2023-07-23 1690109180
720 2023-07-23 1690085022
721 2023-07-22 1690053293
722 2023-07-22 1690039575
723 2023-07-22 1690016205
724 2023-07-22 1690002780
725 2023-09-28 1695917168
726 2023-09-28 1695903038
727 2023-09-28 1695883087
728 2023-09-28 1695873047
729 2023-09-27 1695808591
730 2023-09-27 1695798818
731 2023-09-26 1695726668
732 2023-09-25 1695655858
733 2023-09-25 1695641328
734 2023-09-25 1695641291
735 2023-09-25 1695634242
736 2023-09-24 1695572727
737 2023-09-24 1695528423
738 2023-09-23 1695487586
739 2023-09-23 1695465925
740 2023-09-23 1695465642
741 2023-09-23 1695465474
742 2023-09-23 1695465400
743 2023-09-23 1695461074
744 2023-09-22 1695378386
745 2023-09-22 1695364592
746 2023-09-20 1695235361
747 2023-09-20 1695209747
748 2023-09-20 1695194130
749 2023-09-19 1695126905
750 2023-09-19 1695087514
751 2023-09-18 1695062106
752 2023-09-18 1695020609
753 2023-09-17 1694965545
754 2023-09-17 1694958282
755 2023-09-17 1694944936
756 2023-09-16 1694851078
757 2023-09-16 1694843263
758 2023-09-15 1694783575
759 2023-09-15 1694773054
760 2023-09-14 1694687187
761 2023-09-14 1694674912
762 2023-09-14 1694667697
763 2023-09-14 1694665885
764 2023-09-13 1694622098
765 2023-09-13 1694599133
766 2023-09-13 1694586513
767 2023-09-12 1694512301
768 2023-09-12 1694511010
769 2023-09-12 1694510853
770 2023-09-11 1694453430
771 2023-09-11 1694428283
772 2023-09-10 1694356722
773 2023-09-10 1694355193
774 2023-09-10 1694355028
775 2023-09-10 1694331238
776 2023-09-09 1694295203
777 2023-09-09 1694277154
778 2023-09-09 1694243988
779 2023-09-08 1694190257
780 2023-09-08 1694171787
781 2023-09-08 1694169267
782 2023-09-08 1694168254
783 2023-09-08 1694145888
784 2023-09-07 1694081056
785 2023-09-07 1694061626
786 2023-09-07 1694061517
787 2023-09-07 1694049821
788 2023-09-07 1694049821
789 2023-09-06 1693996142
790 2023-09-06 1693993755
791 2023-09-05 1693933100
792 2023-09-05 1693921781
793 2023-09-05 1693904746
794 2023-09-04 1693787768
795 2023-09-02 1693637435
796 2023-09-01 1693551362
797 2023-08-31 1693507253
798 2023-08-31 1693492559
799 2023-08-31 1693490844
800 2023-08-31 1693465357
801 2023-08-30 1693380968
802 2023-08-30 1693380669
803 2023-08-30 1693380633
804 2023-08-29 1693292085
805 2023-08-26 1693059404
806 2023-08-26 1693032294
807 2023-08-25 1692979270
808 2023-08-25 1692948987
809 2023-08-24 1692867859
810 2023-08-24 1692867859
811 2023-08-23 1692776834
812 2023-08-22 1692742271
813 2023-08-22 1692686290
814 2023-08-21 1692610326
815 2023-08-21 1692602669
816 2023-08-20 1692542391
817 2023-08-20 1692541859
818 2023-08-19 1692429186
819 2023-08-18 1692341035
820 2023-08-17 1692269418
821 2023-08-17 1692268930
822 2023-08-16 1692202086
823 2023-08-16 1692169310
824 2023-08-16 1692146680
825 2023-12-07 1701968219
826 2023-12-07 1701953573
827 2023-12-07 1701920544
828 2023-12-06 1701837614
829 2023-12-06 1701831710
830 2023-12-05 1701791829
831 2023-12-05 1701787300
832 2023-12-05 1701779253
833 2023-12-05 1701756985
834 2023-12-04 1701680494
835 2023-12-02 1701486943
836 2023-12-01 1701404534
837 2023-11-30 1701378488
838 2023-11-30 1701359442
839 2023-11-29 1701237294
840 2023-11-28 1701183520
841 2023-11-26 1700989534
842 2023-11-25 1700885272
843 2023-11-23 1700720019
844 2023-11-22 1700681116
845 2023-11-22 1700641890
846 2023-11-22 1700641792
847 2023-11-22 1700641749
848 2023-11-22 1700632524
849 2023-11-21 1700587832
850 2023-11-21 1700547387
851 2023-11-21 1700545732
852 2023-11-20 1700448514
853 2023-11-18 1700316949
854 2023-11-15 1700050839
855 2023-11-14 1699961504
856 2023-11-14 1699940244
857 2023-11-13 1699885844
858 2023-11-13 1699857000
859 2023-11-13 1699836680
860 2023-11-09 1699574082
861 2023-11-07 1699344347
862 2023-11-06 1699292444
863 2023-11-05 1699179466
864 2023-11-04 1699079428
865 2023-11-03 1699001947
866 2023-11-02 1698928353
867 2023-10-31 1698716758
868 2023-10-29 1698577631
869 2023-10-28 1698477998
870 2023-10-28 1698475979
871 2023-10-27 1698425290
872 2023-10-27 1698423954
873 2023-10-25 1698249080
874 2023-10-25 1698238630
875 2023-10-24 1698131758
876 2023-10-23 1698083993
877 2023-10-23 1698064848
878 2023-10-23 1698035893
879 2023-10-21 1697892350
880 2023-10-21 1697884112
881 2023-10-19 1697709442
882 2023-10-18 1697613554
883 2023-10-18 1697597607
884 2023-10-17 1697548723
885 2023-10-16 1697473823
886 2023-10-16 1697459992
887 2023-10-16 1697439222
888 2023-10-15 1697350546
889 2023-10-14 1697264712
890 2023-10-13 1697204304
891 2023-10-12 1697100729
892 2023-10-12 1697086776
893 2023-10-11 1697014724
894 2023-10-09 1696837912
895 2023-10-08 1696751572
896 2023-10-08 1696735980
897 2023-10-06 1696586697
898 2023-10-06 1696571334
899 2023-10-05 1696505609
900 2023-10-05 1696496727
901 2023-10-05 1696493460
902 2023-10-04 1696397161
903 2023-10-03 1696343798
904 2023-10-03 1696337199
905 2023-10-03 1696336987
906 2023-10-03 1696335784
907 2023-10-03 1696334507
908 2023-10-02 1696225662
909 2023-10-02 1696225401
910 2023-10-02 1696225295
911 2023-10-02 1696224720
912 2023-10-02 1696224341
913 2023-10-02 1696224235
914 2023-10-01 1696156105
915 2023-10-01 1696140839
916 2023-09-30 1696068111
917 2023-09-30 1696057342
918 2023-09-30 1696057276
919 2023-09-30 1696057166
920 2023-09-30 1696056786
921 2023-09-29 1695998665
922 2023-09-29 1695988990
923 2023-09-29 1695988895
924 2023-09-29 1695988215
                                                                                                                                                                                                                                                                                                                                                                                                         title
1                                                                                                                                                                                                                                                                                                                                                                                       Police jihad in Bengal
2                                                                                                                                                                                                                                                                                                                                                                                           We will always win
3                                                                                                                                                                                                                                                                                                                                                                                                 Sab Dekhenge
4                                                                                                 [LawbeatInd] Uttarakhand HC uploads order denying bail to Waseem Rizvi in the HaridwarDharamSansad case.There are huge derogatory remarks against particular religion;against Prophet.The Prophet has been abused;it intends to wound the religious feelings of persons belonging to a particular religion."
5                                                                                                                                                                                                                                                                                                       [OLD] JNU Professor Nivedita Menon tells students "Hindu Society" is the most violent society in world
6                                                                                                                                                                                                                                                                                                                                                                               Jai shri Ram, Jai shri Krishna
7                                                                                                                                                                                                                                                                                                                             Never Forget! Never Forgive the perpetrators, the enablers and the whitewashers!
8                                                                                                                                                                                                                                                                                                                                                                                    Jai Bhavani , jai shivaji
9                                                                                                                                                                                                                                                                                                          Ram Setu is with Adams Bridge those days are not far where It is known as Adams Bridge AKA Ram Setu
10                                                                                                                                                                                                                                                               A great tribute to our Great ancestors , they fought when they were given two options either convert or die , hope it inspires mordern hindus
11                                                                                                                                                                                                                                                                                                                                  What is the main threat to traditional Hinduism and Hindu values in India?
12                                                                                                                                                                                                                                                                                                                                                                                      Jaiiiiiii Shree Ram =©
13                                                                                                                                                                                                                                                                                                                                                          Want opinions on these Hindu resources and methods
14                                                                                                                                                                                                                                                                                                                A must watch if you are a hindu ( gives knowledge about the things we forgot about hinduism)
15                                                                                                                                                                                                                                                                                                                                                                                       Found this on YouTube
16                                                                                                                                                                                                                                                                                                                             Why I killed Gandhi , do watch this movie ,congress is trying to ban this movie
17                                                                                                                                                                                                                                                                                                                                                                                    One day for sure=\003=\v
18                                                                                                                                                                                                                                                                                                     Darkest Day in the history of Independent India, 19th January,1990. 32 years of Kashmiri Hindus Exodus.
19                                                                                                                                                                                                                                                                                       ED attaches asset worth Rs 48 lakh of journalist Rajeev Sharma, accused of passing confidential information to China!
20                                                                                                                                                                                                                                                                                                                                                                                                Secular Meme
21                                                                                                                                                                                                                                                                                                                                                                                              \030A\030A$?/>
22                                                                                                                                                                                                                                                                                                                                             "MUSLIMS RULED ENDIA FOR 800 YEARS1!!!1!" Yet we're still Hindu
23                                                                                                                                                                                                                                                                                                                                                                                                            
24                                                                                                                                                                                                                                                                                  Major subreddit that has connections to reddit admins spreading fake news and calling for DesiMeta and Chodi to be banned.
25                                                                                                                                                                                                                                        No investigation, no chargesheet, no charge framing, no evidence verification, no trial, no argument direct Observation >\024, watch full details Source in comments
26                                                                                                                                                                                                                                                                                                                 9?(M&B &G5@ &G5$>\023\002 \025@ +?0 9A\006 \005*.>( | \a$(@ 9?.M.$ \006$@ \0259>\001 8G 9H?
27                                                                                                                                                                                                                                                                                                                                                                          We are leading to a good direction
28                                                                                                                                                                                                                                                                                                                                                                                   From ig - @theangryvaanar
29                                                                                                                                                                                                                                                                      2 years ago, I made a website on Hindu history, warriors, kings and battles. Do visit, support and give suggestions for improvement =O
30                                                                                                                                                                                                                                                                                                                                                               Devki Nandan Thakur Ji Message to Every Hindu
31                                                                                                                                                                                                                                                                                                                                                         27 points which describe the uniqueness of Hinduism
32                                                                                                                                                                                                                                                                                                                                                 When Shivsena challenged a muslim to recite Hanuman Chalisa
33                                                                                                                                                                                                                                                                                                                                                                                            so be it=á\017=Õ
34                                                                                                                                                                                                                                                                                                                                                                                \005\002$ 9@ \017\0050.M- 9H
35                                                                                                                                                                                                                                                                                                                                                                            please share as much as possible
36                                                                                                                                                                                                                                                                                                                                                                                             Waah my lord =O
37                                                                                                                                                                                                                                                                                 Such illiteracy and dumbness that ever answer is "NO".When he ask do you love india twice, first they say no, and then yes.
38                                                                                                                                                                                                                                                                                                                                                                                            Mudiji Supremacy
39                                                                                                                                                                                                                                                                                                                                                                                                        ....
40                                                                                                                                                                                                                                                                                                                                                                  JAI HANUMAN! Check comment for insta link.
41                                                                                                                                                                                                                                                      Found a true Kaurava - Bulla u/Kareba1614 trying to defame Hinduism by using wrong interpretation of Hinduism and using devil interpretations of texts
42                                                                                                                                                                                                                                                                                               I have created a new subreddit called r/ABCIndianHindus for Hindus born and raised Overseas or living abroad!
43                                                                                                                                                                                                                                                                                                                                                            Lord Indra Supremacy check comment for more vid.
44                                                                                                                                                                                                                                                                                                                                                                                          Om namah shivay =O
45                                                                                                                                                                                                                                                                                                                                                                                              made it today!
46                                                                                                                                                                                                          Palestinian Islamic Scholar Nidhal Siam at Al-Aqsa Mosque Rally: The Only Response to the \034Cow-Worshipping\035 Hindus\031 Affront to the Prophet Muhammad is to Declare Jihad to Eradicate Them
47                                                                                                                                                                                                                                                                                                                                                                 Hindus have more children for Hindu rashtra
48                                                                                                                                                                                                                                                                                                                                                      Hanuman mandir after stone pelting in Ranchi Jharkhand
49                                                                                                                                                                                                                                                                                                                                                                         Stone pelting in Ranchi (Jharkhand)
50                                                                                                                                                                                                                                                                                                                                                                                   I support Nupur Sharma ji
51                                                                                                                                                                                                                                                                                                                                                                              not oc ( Ig - @theangryvaanar)
52                                                                                                                                                                                                                                                                                                                                                                             Made it today =©Jai Shri Ram =©
53                                                                                                                                                                                                                                                                                                                                                                              This reddit is so out of touch
54                                                                                                                                                                                                                                                                                                                                        What's plan B for Hindus? Andhra is already more than 25% Christian.
55                                                                                                                                                                                                                                                                                                                                                                                        Remove mat karna bas
56                                                                                                                                                                                                                                                                                                                                                                                          About caste system
57                                                                                                                                                                                                                                                                                                                                                                                                   UP Police
58                                                                                                                                                                                                                                                                                                                                                                              Atal Bihari Vajpayee thug Life
59                                                                                                                                                                                                                                                                                                                                                                                       Honour Your ancestors
60                                                                                                                                                                                                                                                                                                               Good Muslim or Bad Muslim koo Leaker Sabmit Patra ne Bajai Hindu ke Khilaf bolne wale ki band
61                                                                                                                                                                                                                                                                                                                                                                             Hindu Sikh boi boi on clubhouse
62                                                                                                                                                                                                                                                                                                          If you don't teach your kids to be extremely proud of being Hindu, they won't end up Hindu at all.
63                                                                                                                                                                                                                                                                                                                                   Writing Competition and Mentorship Program | The Sarasvati Sangam Project
64                                                                                                                                                                                                                                                                                                                                                                                                       title
65                                                                                                                                                                                                                                      Turkey; Pakistani refugees harassing women and taking videos of them without their knowledge was arrested by the Turkish police. He will be deported back to Pakistan.
66                                                                                                                                                                                                                                                           Turkey; Pakistani "refugee" getting beaten up and spit upon by girl. The Pakistani was apparently taking pictures of the girl without her knowing
67                                                                                                                                                                                                                                                                                                                                                                    r/ExMuslim, r/ExChristian, and r/ExHindu
68                                                                                                                                                                                                                                                                                                        Yogi AAdityanaath ne btya kii jab Uttar Pradesh me Cycle ki Sarkar thii Tab Saadhuo ke saath kya hua
69                                                                                                                                                                                                                                                                                                                                                                                          atleast watch this
70                                                                                                                                       Panch Mukha Sadashiva, ... Five faces of Sadashiva ... Sadashiva ... Virat Parabrahman Sadashiva ... Virat Shiva ... Bhagwan Vishvakarman ... Sriman Naaraayana ... Shunya Brahman ... That zero which is infinite and simultaneously that infinite which is zero ...
71                                                                                                Regarding OM Nada, ... Sound of AUM, ... Sound of Omkar, ... Pranava, Lord of macrocosmic vitality, ... Akshar, The indestructible one, ... Mahamantra, Universal verse within and beyond each Microcosm, ... Brahmalingam, Symbol of Brahman, ... Atman, The innermost essence of allness and her each part
72                                                                                                                                                                                                                                                                                                                                                                          Regarding Brahman (IT or Absolute)
73                                                                                                                                                                                                                                                                                  Can someone give me strong facts and arguments for why secularism should be removed &amp; India should be a hindu rashtra?
74                                                                                                                                                                                                                                                                                                                                               From - The Angry Vaanar ( additional information in comments)
75                                                                                                                                                                                                                                                                                                                                                                                          did you know that?
76                                                                                                                                                                                                                                                                                                                                                               Why I don't like Modi (and I'm not a libtard)
77                                                                                                                                                                                                                                                                                                                                                                              Duggal sahab to pappu nikle!!?
78                                                                                                                      A Turkish citizen of Armenian origin in a bus. He is claiming that 'our country is being invaded by Pakistanis, Afghans and Syrians', calling out Turkish citizens to raise their voice and to resist 'the invasion'. Some weeks ago, his sister was harassed by Pakistanis in Turkey.
79                                                                                                                                                                                                                                                                                                                   Pakistani refugee in Turkey/Istanbul filming a woman on a boat and uploading it to TikTok
80                                                                                                                               Turkey; Pakistani ""refugees"" taking pictures of little girls and women in the streets getting exposed by a brave female. She took the phone out of their hands and deleted the pictures. The video was watched 600K times, liked 25K and shared 8000 times on social media.
81                                                                                                                                                                                                                                                                                                                                                                some fallacy in religious scripture of Islam
82                                                                                                                                                                                                                                                                                                                                                                                     Hindu don't speak Hindi
83                                                                                                                                                                                                                                                                                                                                                                              just dont mess with true power
84                                                                                                                                                                                                                                                                                                                                                                        Milards like this meme, unironically
85                                                                                                                                                                                                                                                                                                                                                             Hanuman chalisa - Everyday 7 times without fail
86                                                                                                                                                                                                                                                                                                                                                                                    kindly support this guys
87                                                                                                                                                                                                                                                                                                                                                                                                  Thoughts ?
88                                                                                                                                                                                                                                                                                                                                                                   Why cant I find any Help line for Hindus?
89                                                                                                                                                                                                                                                                                                                                                     secoolar india vroo. everyone is subject to free speech
90                                                                                                                                                                                                                                                                                                                                                                                 I am not gonna vote for bjp
91                                                                                                                                                                                                                                      Big Braking : Video of the exact moment when Hanuman Shobha Yatra was attacked in front of Mosque. No attempt was made to hoist =© flag. Share as much as you can =O<ý
92                                                                                                                                                                                                                                                                                                                                 Akbar and Birbal join the SaveSoil Movement - See the Funny Video and Join!
93                                                                                                                                                                                                                                                                                                                                                                                   Mkc secular hindu\031s ki
94                                                                                                                                                                                                                                                                                                                                                                                              =\u0080=\u0080
95                                                                                                                                                                                                                                                                                                                                                                                        Bjp is our last hope
96                                                                                                                                                                                                                                                                                                                                                                              Pav bhaji Khao, bhaji pav nahi
97                                                                                                                                                                                                                                                                                                                                                                                           what do you think
98                                                                                                                                                                                                                                                                                                                                                                                 Is there even any solution?
99                                                                                                                                                                                                                                                                       Join r/indianJihadiWatch to spread awareness about crimes against Hindus . Lets create a strong pro hindu ecosystem here on reddit =©
100                                                                                                                                                                                                                                                                                                                                       Pakistan is not a place it's a Thought seen in Muslim Areas In India
101                                                                                                                                                                                                                                                                                                                                                    Scene in front of Shri Poddareshwar Ram Mandir, Nagpur.
102                                                                                                                                                                                                                                                                                                                                                                                             Clearing Karma
103                                                                                                                                                                                                                                                                                                                                       Rama Navami | Breaking of Shiva\031s bow pastime #ramanavami #shorts
104                                                                                                                                                                                                                                                                                                                                                                 Indian Secularism Is Not Secularism At All
105                                                                                                                                                                                                                                                                                                                                                                             MUSLIM BABAS AND ILLEGAL NAMAZ
106                                                                                                                                                                                                                                                                                                                                                                                    Up walo lagjao kam payy
107                                                                                                                                                                                                                                                                                        [OLD] Kejriwal attending Christian conversion event in Delhi, 100s of people were converted on this day - old video
108                                                                                                                                                                                                                                                                                                                                                                                             "I'll be back"
109                                                                                                                                                                                                                                                                                                                                                                         WE NEED SINGERS FOR MATA KI CHOWKI
110                                                                                                                                                                                                                                                                                                                                                                                     Aawaz mat Uthao bhaiyo
111                                                                                                                                                                                                                                                                                                                                                                                           Something i made
112                                                                                                                                                                                                                                                                                                                                                                                                    r/place
113                                                                                                                                                                                                                                                                                                                                                                                                         =ÿ
114                                                                                                                                                                                                                                                                                                                                                What is the difference between Hindu Rashtra and Ram Rajya?
115                                                                                                                                                                                                                                                                                                                                                 it kills me when kejriwal says "majak" to kashmir gen0cide
116                                                                                                                                                                                                                                                                                                                                            What are some policy changes you'd recommend to improve Bharat?
117                                                                                                                                                                                                                                                                                                                                                                                                          .
118                                                                                                                                                                                                                                                                                                                                                           The Rise of Hindutva in Rural and Towns of India
119                                                                                                                                                                                                                                                                                                                                                                                         Kindly support him
120                                                                                               WATCH: Death Threats to Judges for Hijab Order."Don't think people have accepted the hijab judgment.Everyone can identify where you go for a walk.If any judge gets into any untoward incident tmrw,the HC Judges are fully responsible for it.As per Sharia one has to wear Hijab as per the order of Allah
121                                                                                                                                                                                                                                                                                                                          Propaganda Against 'The Kashmir Files' Exposed by 'Abhijit Iyer Mitra' | 'Buddhi'
122                                                                                               Rajiv Gandhi opens door of 'Ram Mandir in 1986 which gives reason to Pakistan backed terror groups to attack KPs in 1990. Also Pakistan played another mastermind game by dropping pro-pakistan &amp; anti-hindu slogans like 'Raliv, Galiv ya Chaliv' from loudspeakers &amp; succeeded in 48 hours. >!>!>!
123                                                                                                                                                                                                                    Radical mob brutually attacked two people for celebrating Holi near Mosque in Bareilly, UP. People from minority community claimed that these 2 people had thrown colour at the Mosque.
124                                                                                                                    Parzania, based on Gujarat riots was given National Award by Congress govt. In one of the scenes, director Rahul Dholakia shows a foreigner anguished over the riot, throwing slippers at the poster of Gujarat CM. Nobody has sold as fake narrative as Pudiya Bollywood and got away.
125                                                                                                                                                                                                                                                                                                             What do most Hindu Nationalists think about the Indians that fought for UK during World War 2?
126                                                                                                                                                                                                                                                                                                                                                               Do Hindu Nationalists view China as an ally?
127                                                                                                                                                                                                                   [Rant] The growing amount of Tate, Peterson, Elon, etc fans, as well as casteists, sexists, racists, etc, within Hindutva Spheres reveals the need for gatekeeping as well as informing.
128                                                                                                                                                                                                                                                                                                                                                Advaita Vedanta: An Ancient Wisdom for Modern Professionals
129                                                                                                                                                                                                                                                                 Mudiji against boycott bollywood. Khud anti Hindu content allowed due to funding and lobbying by OTT giants and now this. Wah Mudi Ji Wah.
130                                                                                                                                                                                                                                                                                                                      First pakistan map proposed by muslim league's Rahmat Ali to divide India for muslims
131                                                                                                                                                                                                                                                                                                                                                                         Best form of Government for India?
132                                                                                                                                                                                                                                                                                                             Other than subhas chandra bose and bhagat singh, who are others admired by Hindu Nationalists?
133                                                                                                                                                                                                                                                                                                                                                              .\025>( ,(>(G .G\002 \006 09@ 9H 0A\025>5\037
134                                                                                                                                                                                                          This is what you get,, when you resort to too much Muslim appeasement. ">\025> 5?6M55?&M/>2/. ¢¾\u0095¾ ¬¿¶Í¬¬¿¦Í¯¾²ß. \fh\001k\001 University. B\001Egl\001d\023[a. East BaEg\001l. Pkrva BaEga.
135                                                                                                                                                                                                                                                                              I think it's my second time posting this here but it needs to be said because many people here have misconceptions about Sati
136                                                                                                                                                                                                                                                                                                                                            Mockery of Hinduism once again at another pride parade in delhi
137                                                                                                                                                              Follow @office_sansad on Instagram. our goal is to create a form of pseudo government and make our group powerful enough that it can pressurise the government into taking pro hindu decisions and laws and not play Politics with our faith.
138                                                                                                                                                                                                                                                                                                                                                            wanna bhi gen z calling makar sankranti, sexday
139                                                                                                                                                                                                                                                                                                                                                                                                    RAMSETU
140                                                                                                                                                                                                                                                                                                This is How brainwashed our young generations are and this is how their narrative needs to be encountered .
141                                                                                                                                                                                                                                                                                                                              Another lesser-known marvel from the far-flung corners of Indic civilisation!
142                                                                                                                                                                                                                                                                                                                                                       To ab Brahmin Angrazo ka bhi Brainwash kar rahe hai.
143                                                                                                                                                                                                                                                                                                                                                                                               subscribe it
144                                                                                                                                                                                                                                                                                                                                                                              Why I admire Godse not Gandhi
145                                                                                                                                                                                                                                                        Gandhi Godse - Ek Yudh - Official Trailer | Rajkumar Santoshi | In Cinemas On 26th January 2023 | What's Thy Take!? Lemme Knowest In Da Comments!!!
146                                                                                                                                                                                                                                                                                       How the Sikhs &amp; Marathas together drove away the Afghans &amp; recaptured Peshawar, Multan, Lahore &amp; Attock.
147                                                                                                                                                                                                                                                                                                                                              A Tale of Two Calendars - How 'The West' Created 'The Matrix'
148                                                                                                                                                                                                                                                                                                                                                                                              Ancient Hindu
149                                                                                                                                                                                                                                                                                                                                                             Jaago Hindu | 9?(M&B - \017\025 .0$@ 9A\b (8M2
150                                                                                                                                                                                                                                                                                                                                           Poison Verde   =é Spread Over Da World =ú At Some Point Von Time
151                                                                                                                                                                                                                                                                                        Islamists attack Hindus with bricks and iron rods in West Bengal\031s Panskura to stop renovation of a Shiv temple.
152                                                                                               Report Blasphemy Art on EXHINDU to the BJP IT Cyber Cell, and strict legal action will be taken against all of EXHINDU's moderators and users who participated in those threads under Section 295A of the Indian Penal Code. (EXHINDU mods If you are seeing this, you may remove those threads before its l
153                                                                                                                                                                                                                                                                                                                                                              What do u expect government to do to muslims?
154                                                                                                                                                                                                                                                                                                                                                         P .M2G\032M\033K 9\037>\023, \0060M/K ,\032>\023 M
155                                                                                                                                                                                                                                                                                                                                                                  Crosspost on all indic/dharmic subreddits
156                                                                                                                                                                                                                                     this channel openly promotes terrorism and spread hate against Indians and Hindus, just read this channels description and look at his posts let's report this channel
157                                                                                                                                                                                                                                                                                                                                                 Do Hindu Nationalists support a common, official language?
158                                                                                                                                                                                                                                                                                                                                                                                     Unite, Rise &amp; Win.
159                                                                                                     Critical Race Theory + Intersectionality + Erroneously Flawed &amp; Distorted Bh\001ratiya <î<ó Itih\001sa (Indian History) + Trouble Maker "Minorities" + Historical Subversion + Lavk of Unity &amp; ZatrubMdha = Hinduphobia &amp; Anti-India Sentiment Under The Garb of Movements for Inclusivity
160                                                                                                                                                                                                                                                                                                                                                   ¡¡¡Ambarsar Aala Kand KR Dena Chahida Ae Inha De Upar!!!
161                                                                                                                                                                                                                                                                                                                                                                                         Sunrise of Sanatan
162                                                                                                                                                                                                                                                                                                 When your whole Identity is based on your Ex >!>! (If you want to help us Expose them, join us on our sub)
163                                                                                                                                                                                                                                                                                                                                                                               Do you accept the challenge?
164                                                                                                                                                                                                                                                                                                                      Pata Nahi Kis Roop Mein Aakar Narayan Mil Jayega [ Full Bhajan ] sanatan dharm ki jay
165                                                                                                                                                                                                                                                                                          Another one. Oh well at least she didn't end up in suitcase or refrigerator or burning herself or...list goes on.
166                                                                                                                                                                                                                                                                                                                                   Bhaiyo Maine unka jhut exposed kar diya hai ja ka like aur comment Karo.
167                                                                                                                                                                                                                                                                                                                                     Share this as far as u can and share ur opinion tooo\f\017\f\017\f\017
168                                                                                                                                                                                                                                                                                                                                                                     Found gold in an Anti-hindu subreddit.
169                                                                                                                                                                                                                                                                                                                                              POST KO ITNA FAILAO KI YE JIHADI JAIL MEIN MILE JAI SHREE RAM
170                                                                                                                                                      Did you know the Battle of Haifa is considered the last successful cavalry charge in modern history? This documentary is the events that lead to the battle and how the Indian soldiers saved the city of Haifa now in Israel from the Ottoman Turks.
171                                                                                                                                      [OLD] Accused Shahrukh Pathan, who pointed a gun at a policeman during Anti-CAA Protests gets a welcome during 4-hour parole on his arrival at his residence on May 23. He got parole to meet his ailing father. (The viral video has been confirmed by police) (ANI)
172                                                                                                                                                                                                                                                                                                                                                                             Feminist: Ek prem katha part 1
173                                                                                                                                                                                                                                                                                                      What are contemporary Hindutva views on eating beef and animal sacrifices in Vedic texts and history?
174                                                                                                                                                                                                                                                                                                                                             So it is alright to spread hate against India and Hindus loudy
175                                                                                                                                                                                                                                                                                                                                                                             Related to our national anthem
176                                                                                                                                                                                                                                                                                                                                                                                              Advice needed
177                                                                                                                                                                                                                                                                                                                                           I made a discord server for this community for those interested!
178                                                                                                                                                                                                                                                                                                                                                                            \0252/A\027 \025@ 0>\034(@$? =%
179                                                                                                                                                                                                                                                                                                                                                                      What type of government you idealize?
180                                                                                                                                                                                                                                                                                                                                                                       brothers assemble.help me to ban him
181                                                                                                                                                                                                                                                                                                                                                A Road Map on how Hindus should be with our Muslim brothers
182                                                                                                                                                                                                                                                                                                                                       Is this what secularism is? This guy should be reported immediately!
183                                                                                                                                                                                                                                                                                                                                                                             The Real reason The Queen died
184                                                                                                                                                                                                                                                                                                                                                                             Someone give this guy an award
185                                                                                                                                                                                                                                                                                                                                                         ARE SIR JI NAAM KYA HAI USS MEMBER OF PARLIAMENT ?
186                                                                                                                                                                                                                                                                                                                                                Are Vedas the one and only source of truth? Or is there any
187                                                                                                                                                                                                                                                                                                                                                                                =OAPKO GHABRANA NAHI HAI =O
188                                                                                                                                                                                                                                                        8>2K\002 ,>& +?0 '\0320M\032>' .G\002 \006\b\002 *B0M5 0>7M\037M0*$? *M0$?-> *>\037?2, 2K\027K\002 (G \025M/K\002 ,$>/> 8,8G \0260>, 0>7M\037M0*$??
189                                                                                                                                                                                                                                                                                                         0>'> \0057M\037.@ :0>'> \032>2@8> \025G *>  8G .?\037 \034>$@ 9H 8-@ ,>'>, \034>(G\002 6A- .A9B0M$
190                                                                                                                                                                                                                                                                                                                                                                \034@5>6M.K\002 \025@ \006/A *$> \0250G\002
191                                                                                                                                                                                                                                                                                                                                                                                         Hindus are cowards
192                                                                                                                                                                                                                                                                                                                                                                                      Hindus to Bollywood :
193                                                                                                                                           After Ankita in Jharkhand, Naina Mishra a 16yo girl from Delhi's Sangam Vihar gets shot because she refused the love proposal of a guy named Ali. We all have to raise our voice against this for our sisters safety. News article in comments for more info....
194                                                                                                                                                                                                                                                                                                                                                    Made this art inspired by our ancient warriors and Gods
195                                                                                                                                                                                                                                                                                                                                                                             made digital art of Lord Shiva
196                                                                                                                                                                                                                                                                                                                                                  I tried drawing digital art of Lord Shiva \034Hari OM\035
197                                                                                                                                                                                                                                                                                                                                                                                                 Devotional
198                                                                                                                                                                                                                                                                                                                      What is your view of Subhas Chandra Bose? Did Subhas Chandra Bose support secularism?
199                                                                                                                                                                                                                                                                                                                                                                        Independence Day during school days
200                                                                                                                                                                                                                                                                                                                                                                  Why should we celebrate Independence Day?
201                                                                                                                                                                                                                                                                                                                                                                                                   =©=©=©=©
202                                                                                                                                                                                                                                                                                                                                   Do you guys avoid movies that have Muslim or Christian actors/directors?
203                                                                                                                                                                                                                                                                            I need a help from a person who is good in hacking or IT expert ho, ek anti hindu account hai vapas udana hai please contact =O
204                                                                                                                                                                                                                                                                                                                                                                                                      True?
205                                                                                                                                                                                                                                                                                                   Does Hindutva support also black and white people that live in India who are part of the hindu religion?
206                                                                                                                                                                                                                                                                                                                                             Why do most people around the world see Hindutva as dangerous?
207                                                                                                                                                                                                                                                                                                                                                Would you guys class Mahatma Gandhi as a Hindu nationalist?
208                                                                                                                                                                                                                                                                                                                                                                             Join @cubicalyogi on instagram
209                                                                                                                                                                                                                                                                                                                                                                                              am i homofobo
210                                                                                                                                                                                                                                                                                                                                                                 Brother please support r/KattarrHindu =O=O
211                                                                                                                                                                                                                                                                                                                                                                                We got that retention rate!
212                                                                                                                                                                                                                                                                                                                                                                          Abhimanyu - The Legendary Warrior
213                                                                                                                                                                                                                                                                                                                                                                              Om Indra Devaya Namah! =I\017
214                                                                                                                                                                                                                                                                                                                                                                                                  The Truth
215                                                                                                                                                                                                                                                                                                                                                                                          Nari supremacy =Ð
216                                                                                                                                                                                                                                                                                                                                                 Jai Radhe Govinda Bhajan | Indian Culture | Sanatan Dharma
217                                                                                                                                                                                                                                                                                                                                   size of soul according to our scriptures ( source _ @theangryvaanar Ig )
218                                                                                                                                                                                                               [OLD] "Extremely peaceful ones" angry over PETA's member saying no to 'Qurbani' on 'Eid al-Adha'. Police have arrested the PETA activist under section 295A for outraging religious feelings
219                                                                                                                                                                                                                                                                                                                                                                                       India and Sri Lanka.
220                                                                                                                                                                                                                                                                                                                                                                                        Shiv Tandav Stotram
221                                                                                                                                                                                                                                                                                                                                                             My sanatan teaches this... not sar tan se juda
222                                                                                                                                                                                                                                                                                                                                      God of Gods Lord Shiva Supremacy! check comments for more insta vids!
223                                                                                                                                                                                                                                                                                                                                        origin of violin through Ravanhatha ( credits - @theangryvaanar ig)
224                                                                                                                                                                                                                                                                                                                                                                        Chennakeshava temple of Somnathpura
225                                                                                                                                                                                                                                                                                        Georgia becomes first American state to condemn Hinduphobia; Passes historic resolution | Details / Hindustan Times
226                                                                                                                                                                                                                                                                                                                                                                                         Caption this=O=O=O
227                                                                                                                                                                                                                                                                                                                         Academic Sâh1bs Who Never Left | The Origins of Academic Hinduphobia | Pr\001\nyam
228                                                                                                                                                                                                                                                                                                                                                                                         Har Har Mahadev =O
229                                                                                                                                                                                                                                                                                                                                                                                                       =ª=ª
230                                                                                                                                                                                                                                                                                                          Join r/IndiaRises: Fight Librandus and Get News and Discussion | get news about Attacks on Hindus
231                                                                                                                                                                                                                                                                                                                                    Come to Bakchodi.org for Unrestricted Free Speech - Leave Reddit Behind
232                                                                                                                                                                                                                                                                                                                                                                         Shola in Glorification of Lord Ram
233                                                                                                                                                                                                                                                                                                                                                                                            Our real heroes
234                                                                                                                                                                                                                                                                                     Why, according to the "Ramayana," did Indra shift the Indrayani River from the Vindhya Mountain to the Kaushiki River?
235                                                                                                                                                                                                                                                                                                                                  The Auspicious Birth of Lord Rama - A Celebrated Event in Hindu Mythology
236                                                                                                                                                                                                                                                                                                                                                                                   The Beheading by Vikalpa
237                                                                                                                                                                                                                                                                                                                                                                                         Sickular khangress
238                                                                                                                                                                                                                                                                                                                                                                        Share the video as much as possible
239                                                                                                                                                                                                                                                                                                                                             Reservation... This is the hatred in their hearts for Brahmins
240                                                                                                                                                                                                                                                                                                                                                                            free time Mila bande ko finally
241                                                                                                                                                                                                                                                                                                                                   The Ultimate Guide to Hindu Scriptures: Karma, Dharma, Mantras, the Guru
242                                                                                                                                                                                                                                                                                                                                         General of Maharaja Gulab Singh who conquered ladakh and baltistan
243                                                                                                                                                                                                                                                                                     Can someone plz tell me where to go for stuff like reporting hate groups and anti hindu content on instagram and such?
244                                                                                                                                                                                                                                                                                                                                                                                               A comparison
245                                                                                                                                                                                                                                                                                                                                                                              Ok, what in the actual hell!?
246                                                                                                                                                                                                                                                                                                                                                             News ki Pathshala with Vishnu Jain: Waqf Board
247                                                                                                                                                                                                                                                                                                                                                                                           Amritpal to gayo
248                                                                                                                                                                                                                                                                   Jaldi Jaldi ye post kar deta hoon phir goron ko ye dikhakar unse respect bhi to chahiye. aise log anti Indians se bhi kharaab hote hain.
249                                                                                                                                                                                                                                                                                                                                       5 Key Takeaways from the Shrimad Bhagavad Gita for a Fulfilling Life
250                                                                                                                                                                                                                                                                                                                        My digital art on Lord Shiva. Support if u like it on Reddit Instagram and Twitter.
251                                                                                                                                                                                                                                                                                                                                                                                                 bhaago oye
252                                                                                                                                                                                                                                                                                                                                                                             Hindu Vishwa Magazine archives
253                                                                                                                                                                                                                                                                                                                                                                                                  mood ha..
254                                                                                                                                                                                                                                                                   Exploring the Historical Landmarks, Similarities, and Differences between Ramayana and Mahabharata: Lessons and Values for Today's World
255                                                                                                                                                                                                                                                                                                                                                                                          Deep Words indeed
256                                                                                                                                                                                            Nabi ke Nuske, Camel piss medicine in Islam(ref: sahih al bukhari 5686). Shove this hadith in the face of <q\017ullas and Librandus who troll Hindus by calling them names such as "gobar bhakt, gaumutra" Etc.
257                                                                                                                                                                                                                                                                                                                             How to Benefit from Hindu Sacred Texts: A Guide to Spiritual Growth and Wisdom
258                                                                                                                                                                                                                                                                                                                                                                                             Ravan bhakts>!
259                                                                                                                                                                                                                                                                                                                                    Unraveling the Truth: Debunking Myths and Misconceptions About Hinduism
260                                                                                                                                                                                                                                                           A Hindu actress parading half naked wearing a cross. And we still accept her movies. Bollywood is sinking lower everyday. What do you all think?
261                                                                                                                                                                                                                                                                            9?\002&@ ->7?/K\002 \025G 2?\017, ...... /K\027-M07M\037, *M0,A&M' /K\027-M07M\037, /K\027 -M07M\037, *M0,A&M' /K\027 -M07M\037
262                                                                                                                                                                                                                                                                                                                                                                                     Art By Jaipur Dialogue
263                                                                                                                                                                                                                                                                                                                                            A Detailed Post on Quora Just Blew my Mind!! Please do Read....
264                                                                                                                                                                                                                                                                                                                                                                                                         ??
265                                                                                                                                                                                                                                                                                                                                             Infographic: The Countries Shutting Down the Internet the Most
266                                                                                                                                                                                                                                                                                                                                                                                             shubhkamnayein
267 *&>0M% - (/\003) \034K (8M58A\003) ,9?( \025G 8.>( 50M$M$.>( \t7> \025> (\034>0\003) \034@0M# \0250>(G5>2> (\t\032M/$G) \0259> \034>$> 9H \t8 (5>\034?(.M) \034M\036>( \0240 ,2 \025> &G(G5>2> (\005\034>6M5.M) \034?8.G\002 ,\0250@ \0240 \030K\\G 5?&M/.>( (*B7#.M) \034K *A7M\037? \0250(G5>2> 9H, \t8 \006&?$M/ \025@ 9. ((A) 6@\030M0 (\t*, 8M$K7>.) *M06\0028> \0250G\002 eje Bhemta fir hag diya =©
268                                                                                                                                                                                                                                                                                                                                                                           A sign of positivity for Indians
269                                                                                                                                                                                                                                                                                            Disgusting filth of this society miss translating (Vadhu = wife) as their dirty minds want to, mass report this
270                                                                                                                                                                                                                                                                                                                                                                                        8(>$( 9@ 8$M/ 9H...
271                                                                                                                                                                                                                                                                                                                                                                                  shiv mahapuran episode 46
272                                                                                                                                                                                                                                                                                                                                                                                                192.68.78.1
273                                                                                                                                                                                                                                                                                                                Divine Hanuman: The Ultimate Devotee and Protector, Please Check Out My Content On YouTube!
274                                                                                                                                                                                                                                                                                                                                                  If you don't learn from history, you will become history.
275                                                                                                                                                                                                                                                                                                               The western institutions have a very intricate web of fundings from many different countries
276                                                                                                                                                                                                                                                                                                                                                          Come to Bakchodi.org for Unrestricted Free Speech
277                                                                                                                                                                                                                                                                                                                                                       Where can I watch the Ramayana 4K Remastered Anime??
278                                                                                                                                                                                                                                                               What are your thoughts on creating a movement if it doesn\031t already exist to convert South Asian Muslims and Christians back to Hinduism?
279                                                                                                                                                                                                                                                                                                 The Caravan steals artwork of Der Nederlands <ó<ñ-based artist in latest issue attacking Dr. S. Jaishankar
280                                                                                                                                                                                                Far-Left Hinduphobic &amp; Anti-India Propaganda Outlet's RaG\n+ RMG\001 x Meltdown: Dr. S. Jaishankar As The Voice Of Modi's "Hindu Nationalist" Brave &amp; Independent Bh\001rata-Centric Foreign Policy
281                                                                                                                                                                                                                                                                     ¡¡¡Yes, In Fact, We Should Ourselves Take The Road Of Justice \u0096 If No One, Not Even The Système Is With Us!!! Jaya Zr+ R\001ma =©
282                                                                                                                                                                                                                                                                                                                                                                                             Aye hye modiji
283                                                                                                                                                                                                                                                                                                                                                             Hokage Modi Sama is a new Hindutva anime page!
284                                                                                                                                                                                                                                                            Is any part or parts or sites that indicate Indraprastha been found outside of Purana Kila? Or is it entirely within the bounds of Purana Kila?
285                                                                                                                                                                                                                                                                                                                                                  Please know that the Aryan Invasion Theory is a big myth.
286                                                                                                                                                                                                                                                                                                              Khalistanis :- Afghan khalistani bhai bhai, hahaha, are bhai sar tan de juda kyun kar rahe ho
287                                                                                                                                                                                                                                                                                                                                                            ¿¡Ladies &amp; Girls, Do Y'all Agree With Moi!?
288                                                                                                                                                                                                                                                                                                               Daily reminder that westerners aren't saviors. They are supremacists (White Saviour Complex)
289                                                                                                                                                                                                                                                                                                                                                         \037>\a\0372 0>#>\034@ \025G \0320#K\002 .G\002 9H
290                                                                                                                                                                                                                                                                                                                                                                                             Abhijit CHADva
291                                                                                                                                                                                                                                                                                                                                                                                   Art inspired by Hinduism
292                                                                                                                                                                                                                                                                                                                                                   This is how the "Ecosystem" works. ANI is also a target.
293                                                                                                                                                                                                                                                                   ¿¡What Do Thou All Thinkest About This!? In My Opinion, Only Vedic, Sanatani &amp; Zarusthrans Have A Right To Call Themselves Aryans...
294                                                                                                                                                                                                                                                                                                                                     ...&amp; They Beliève That R\001m\001yaGa Is Totally Fake &amp; Untrue
295                                                                                                                                                                                                                                                                                                                                                                       AMA with Dr.Koenraad Elst upcoming !
296                                                                                                                                                                                                                                                                                                         This Thread Is OUGHT TO BE FORWARDED &amp; REACHED To More &amp; More Bh\001ratiyas As Possible...
297                                                                                                                                                                                                                                                                                                                                                                                                Jay Sanatan
298                                                                                                                                                                                                                                                                                                                                                                                   NYtimes ki jali padi hai
299                                                                                                                                                                                                                                                                                                                Veer Vinayak Damodar Savarkar's Motivational Quote In Sambalpuri Odia (Taken From r/Odisha)
300                                                                                                                                                                                                                                                                                                                  A simple thing is, No one other than Indian populus should decide what's right and wrong.
301                                                                                                                                                                                                                                                                                                                                                                                Thy Thoughts Et Opinions...
302                                                                                                                                                                                                                                                                                                                                                            PYñ\na MYkk\001rs // *\036M\032 .\025M\025>0M8M
303                                                                                                                                                                                                                                                                                                                                                     UK mayor Bob Blackman on India's growth. Credits : Ani
304                                                                                                                                                                                                                                                                                                                                                                   *M0>\032@( 6>8M$M0K\002 \025> *$> \0322>
305                                                                                                                                                                                                                                                                                                                               9A\025<B.$ \032>9G \025?8@ \025@ -@ 9K, 2G\025?( 8?8M\037. $K 9.>0> 9@ 9H...
306                                                                                                                                                                                                                                                                                                                                                                                    what do hindutvas want?
307                                                                                                                                                                                                                                                                                                                                                    How Can Dhirendra Krishna Shashtri have so many powers?
308                                                                                                                                                                                                                                                                                                                                    That's why we brahmins hate mlechajats/massagaetes from time immemorial
309                                                                                                                                                                                                                                                                                                                                                                                                    satsang
310                                                                                                                                                                                                                                                                                                                                                                                               Gandhi Godse
311                                                                                                                                                                                                                                                                                                                                                                   What can I do to help the Hindu Rashtra?
312                                                                                                                                                                                                                                                                                                                                                                                                    satsang
313                                                                                                                                                                                                                                                                                                                                         Critical Caste Theory = Critical Race Theory + Ambedkarite Thought
314                                                                                                                                                                                                                                                                          The Anti-Hindu RTE law: Teacher Salaries in Private Schools and Why Middle Class Hindus Need to Kill off RTE as fast as possible.
315                                                                                                                                                                                                                                                                                                                                                                                                CHAD-GPT...
316                                                                                                                                                                                                                                                                                                                                                                     CoHNA Anti-Caste Discrimination Effort
317                                                                                                                                                                                                                                                                                                                                                               [Internal Politics] A quick call to everyone
318                                                                                                                                                                                                                                                                       What do Hindu Nationalists think about Indian Christians? Is Christianity's growth in India considered a massive problem like Islam?
319                                                                                                                                                                                                                                                                                                                                                                   What is the problem with Islam in India?
320                                                                                                                                                                                                                                                                        What economic system do most Hindu Nationalists prefer? Do most Hindu Nationalists hate capitalism and support socialism/communism?
321                                                                                                                                                                                                                                                                                                                                           Ramayana, Mahabharata and the Puranas: Best English Translations
322                                                                                                                                                                                                                                                                                                                      What do Hindu Nationalists think about famous Indian Muslims like Aamir Khan and SRK?
323                                          \005, 8.\035 \006/> \025? \025M/B\001 \005\002\027M0G\034< 2K\027 Breast Tax 2\0275>$G %G... .$2, \a( Xtians \025K Breasts 8G Obsession 9H, \034H8G K2Õ \025K Genitals 8G ,!<> Obsession 9K$> 9H... (NB: Xtian = Breast Mutilation, K2A = Genital Mutilation, Both Male &amp; Female) Also Important To Know: These Xtians Also Indulge In Breast &amp; Genital P
324                                                                                                                                                                                                                                                                                                                                                             Five Brahmasutras: Commentary By Vijnanabhiksu
325                                                                                                                                                                                                                                               Adah Sharma On The Success Of The Kerala Story: Playing Shalini Unnikrishnan Has Physically &amp; Émotionally Scarred Me | Hindi Movie News - Times of India
326                                                                                                                                                                                                                                                                                                 A abdul of Pakistan is challenging Pakistan's army chief Asim Munir by burning the check post of the army.
327                                                                                                                                                                                                                                                                                                                                   The Bhagavad Gita: A Guidebook for Spiritual Growth and Self-Realization
328                                                                                                                                                                                                                                                                                                                                                   in relation to my previous post {which was a video clip}
329                                                                                                                                                                                                                                                                                                                                                          was Gurkd\023v Rab+ndra Naath lh\001kur a SaEgh+ 
330                                                                                                                                                                                                                               The Kerala Story: \034This is our story\035: Victim Shruti narrates horrifying details of her life, calling the film accurate and claiming the movie depicts her life story.
331                                                                                                                                                                                                                                                                                                                                                                        Akola Shiv Mahapuran ki Katha Day 5
332                                                                                               I know what pak-pak really is...but I have a question for sickulars that who the fkr told us that INDIA should be a sickular and libr*ndu country when Hindus are being sl*ughtered in its own one and only country where our next generation will supposed to go (for those who have read PFI's leaked doc)
333                                                                                                                                                                                                                                                                                                                                                                          Ladke ne ak sath nipta diya sabko
334                                                                                                                                                                                                                                             Dhami government's bulldozer thundered on the illegal tomb in Kotdwar! Demolition of decades old illegal mazar built on forest department land in Giwai source
335                                                                                                                                                                                                                                                                                                                                                Exploring the Rigveda: The Oldest Veda and Its Significance
336                                                                                                                                                                                                                                                                                                                                                                 Choose ur idols carefully....Jai Hind...=O
337                                                                                                                                                                                                                                                                                                                                                                           Akola Shiv Mahapuran Katha Day 4
338                                                                                                                                                                                                                                                                                                                                The Significance of Bhagavad Gita Shlokas in Hindu Culture and Spirituality
339                                                                                                                                                                                                                                                                                                                                                                                          Jai Shree Krishna
340                                                                                                                                                                                                                                                                                                                                                                   Swami Samarth Shiv Mahapuran Katha Day 3
341                                                                                                                       Can people stop being so patronizing towards women? She's a grown woman she made her own decision. Like Deepika said "my body my choice" women who CHOOSE to marry Rahman are CHOOSING to face any consequences that comes with it. So save your tears for the real innocent victims
342                                                                                                                                                                                                                                                          @sammyvada (on tiktok &amp; instagram) debunks khalistanis. Please show this guys account some love. He debunks other type of hinduphobes as well
343                                                                                                                                                                                                                                                                                                                                                                                   Help regarding upanayana
344                                                                                                                                                                                                                                                                                                                                                     Day 2 Akola Shiv Puran Katha Pradeep Mishra Live Today
345                                                                                                                                                                                                                                                                                                                                                Abhijit Iyer Mitra take on Rahul Gandhi speech at Cambridge
346                                                                                                                                                                                                                                                                                                                                                                                                    Secular
347                                                                                                                                                                                                                                                                                                                                                Narada Jayanti: Honoring the Messenger of Peace and Harmony
348                                                                                                                                                                                                                                                                                                                                                                                                    Proudly
349                                                                                                                                                                                                                                                                                                                                                Is it possible to build a great wall along the Khyber pass?
350                                                                                                                                                                                                                                                                                                                                                                   Day 1 Swami Samarth Shiv Mahapuran Katha
351                                                                                                                                                                                                                                                                                                                                                                                                gandustanis
352                                                                                                                                                                                                                                                                                                                                                                              '0M.K 0\025M7$? 0\025M7?$\003
353                                                                                                                                                                                                                                                                                                                                                    Shri Narasimha Jayanti and Mata Chinnmasta Devi Jayanti
354                                                                                                                                                                                                                                                                                                                                                   The Significance of Narasimha Jayanti in Hindu Mythology
355                                                                                                                                                                                                                                                                                                                                                                                               Jai Shri Ram
356                                                                                                                                                                                                                                                                                                                                                                                                 I want YOU
357                                                                                                                                                                                                                                                                                                                                                               How to Perform the Pradosh Vrat Puja at Home
358                                                                                                                                                                                                                                                                                                                                                              Shop the Best Selection of Pure Cotton Dhotis
359                                                                                                                                                                                                                                                                                                                                                                                          DMK Lies Debunked
360                                                                                                                                                                                                                                                                                                                                       Parashurama Dwadashi: A Day To Honor The Sixth Avatar Of Lord Vishnu
361                                                                                                                                                                                                                                                                                                                                                                     Day-7 Ekanteshwar Shiv Mahapuran Katha
362                                                                                                                                                                                                                                                                                                                                                                                       Manglik Dosh Nivaran
363                                                                                                                                                                         Bhaskaracharya stated the laws of gravity in book Surya Siddhanta in 11thcentury. Thus, the law exists even before birth of Sir Isaac Newton (16th century). Here are some slokas from his book that mentions how gravitation work
364                                                                                                                                                                                                                                                                                                                                                                            Revenge from Ukraine see 4 pics
365                                                                                                                                                                                                                                                                                                                                                       @thesammyvada (on instagram) on \034idol worship\035
366                                                                                                                                                                                                                                                                                                                                                     @thesammyvada (on instagram) more debunks on Khalistan
367                                                                                                                                                                                                                                                                                                                                                                              Who's planning to read this ?
368                                                                                                                                                                                                                                                                                                                                                 Pradeep Mishra Live Ekanteshwar Shiv Mahapuran Katha Day 6
369                                                                                                                                                                                                                                                                                                                            Counting 21 to 30 in sanskrit | 8\0028M\025C$ .G\002 \027?($@ - Sanskrit School
370                                                                                                                                                                                                                                                                                                                                                          Don't ever dare to take panga with the Dogras =\b
371                                                                                                                                                                                                                                                                                                                                                                                               Just a query
372                                                                                                                                                                                                                                                                                                                            Counting 11 to 20 in sanskrit | 8\0028M\025C$ .G\002 \027?($@ - Sanskrit School
373                                                                                                                                                                                                                                                                                                                                                          How To Observe Saturday As A Holy Day In Hinduism
374                                                                                                                                                                                                                                                                                                                             Counting 1 to 10 in sanskrit | 8\0028M\025C$ .G\002 \027?($@ - Sanskrit School
375                                                                                                                                                                                                                                                                                                                               Bagalamukhi Jayanti \023 The Day to Seek the Goddess's Blessings for Victory
376                                                                                                                                                                                                                                                                                                                                                                           Top 8 Kattar Dharmic politicians
377                                                                                                                                                                                                                                                                                                                                        Panther banne chale the, bhigi billi banadiya Shiv Sena ke shero ne
378                                                                                                                                                                                                                                                                                                                                                                                Narendra Modi A.I. Chat Bot
379                                                                                                                                                                                                                                                                                                                               Surdas Jayanti: A Tribute to the Visionary who Transformed Indian Literature
380                                                                                                                                                                                                                                                                                                                                                                      The Mysteries of Hindu Monday Mantras
381                                                                                                                                                                                                                                                                                                                                                             Thee land, thee soul, thee life belongs to god
382                                                                                                                                                                                                                                                                                                                                                                                Ashta siddhis of Hanuman Ji
383                                                                                                                                                                                                                                                                                                                                                       Akshaya Tritiya: A Significant Day In Hindu Religion
384                                                                                                                                                                                                                                                                                                                                                                                   How I attained divinity 
385                                                                                                                                                                                                                                                                                                                                                                              Parashuram Ji was a gorakshak
386                                                                                                                                                                                                                                                                                                                                                                 Friendship Now vs Friendship in Mahabharat
387                                                                                                                                                                                                                                                                                                                                                        Chandra Darshan: A Celebration of the Moon's Energy
388                                                                                                                                                                                                                                            Which Indian Celebrity in the West is the best representation and role model for Hinduism? Is Priyanka Chopra a good role model for Hindus in India and abroad?
389                                                                                                                                                                                                                                                                                                                                                       Vaishakha Amavasya and its Connection to Lord Vishnu
390                                                                                                                                                                                                                                                                                                                        UK: Hindu students 'bullied'; Pushed to 'covert to Islam' by Muslim pupils | Report
391                                                                                                                                                                                                                                                                                                                                                                               Christopher Hickens on islam
392                                                                                                                                                                                                                                                                                                                                                             Rituals and Significance of Anvadhan and Ishti
393                                                                                                                                                                                                                                                                                                         West Bengal: Islamic organisation takes out \030candle march\031 in support of gangster Atiq Ahmed
394                                                                                                                                                                                                                                                   A non-NDA state like Odisha has laws against conversion and land grabbing, but NDA ruled states like Assam, Maharashtra, Karnataka, Tripura, etc. don't!
395                                                                                                                                                                                                                                                                                                                                       The Power of Monday Fasting: How Somvar Vrat Can Transform Your Life
396                                                                                                                                                                                                                                                                        Muslim playing victim. Saying haindavas are calling him a separatist due to his faith even though he exposed it in his previous vid
397                                                                                                                                                                                                                                                                                  Varahamihira was one of the greatest astronomers to have lived. He was the first person to put forth the idea of gravity.
398                                                                                                                                                                                                                                                                                                                       Brick pelting on Hanuman Jayanti motorcycle rally in Sambalpur (Odisha) by peacefuls
399                                                                                                                                                                                       Today is the Birth Anniversary of one of the greatest Mathematicians this world has ever seen "Acharya Aryabhatta" who gave the concepts regarding zero, pi, trigonometry, motions of the solar system and eclipses.
400                                                                                                                                                                                                                                                                                                                                                                                        Test &amp; reaction
401                                                                                                                                                                                                                                              Pakistani Hindu women &amp; children attacked by Islamists in Thar, Sindh. Idea is to raise cost of being Hindu so much in Pakistan that Hindu spirit breaks.
402                                                                                                                                                                                                                                                                                                                                                                Significance Of Thursday In Hindu Mythology
403                                                                                                                                                                                                                                                                                                        Serious question: Should Hindus incorporate polemics about Sikhism whilst dealing with Khalistanis?
404                                                                                                                                                                                                                                                                                                                                            Hindu devotee arrested for worshipping at a temple in Telangana
405                                                                                                                                                                                                                                                                                                                                                                           Read &amp; Understand the Vedas!
406                                                                                                                                                                                                                                                                                                                 Understanding the Differences and Diversity of Indian Literature and Hindu Religious Books
407                                                                                                                                                                                                                                                                                                                                                   Periyarites are trying hard to break the unity of Hindus
408                                                                                                                                                                                                                                                                                                                                                                                          No copyright meme
409                                                                                                                                                                                                                                                                                                                                                        Dancing with God Himself! Panipat Hanuman Janmotsav
410                                                                                                                                                                                                                                                                  Look at the state of those who dared to speak against a particular community and tried to expose them. Still You say Hindus have Freedom?
411                                                                                                                                                                                                                                                                                                                                                              Now I understand why the Whites like Buddhism
412                                                                                                                                                                                                                                                                                                                                                                                 How Mantra chanting Helps?
413                                                                                                                                                                                                                                                                                                                                                                                      \017 Attack on Hindus
414                                                                                                                                                                                                                                                                                                                                                                   Always there is something supreme than u
415                                                                                                                                                                                                                                                                                                                                                                                              Divinityd\017
416                                                                                                                                                                                                                                                                                                                                                                            Wake-up call for Hindu liberals
417                                                                                                                                                                                                                                                                                                      The Impact of Vedic Upanishads on Human Society: Insights into Spirituality, Philosophy, and Morality
418                                                                                                                                                                                                                                                                                                                                                   "...Hindustan mein kuch bhi nahi hai, viraana khaali..."
419                                                                                                                                                                                                                                                                                                        Jai jai jai bajrangbali 9(A.>( \034/\002$@ \0175\002 9(A.>( \034@ \034(M.K$M85 8M\037G\0378 #sho...
420                                                                                                                                                                                                                                                                                                                                                     But maybe we shouldn't jump to the conclusions =\u0080
421                                                                                                                                                                                                                                                                                                                                                                                           #savarkarliveson
422                                                                                                                                                                                                                                                                                                                                                                                           Woke up citizens
423                                                                                                                                                                                                                                                                                                                         Why Bakchodi.org is needed more than ever - The banning of IndiaSpeaks is imminent
424                                                                                                                                                                                                                                                                                                    Wednesdays in Hinduism: Worshipping Lord Krishna and Lord Ganesha for Spiritual and Material Prosperity
425                                                                                                                                                                                                                                                                                        8>50\0250 -\027$ 8?\0029 \025G \027A0A 9H | Bhagat Singh| Vinayak Damodar Savarkar| Swatantrya Veer Savarkar Teaser
426                                                                                                                                                                                                                                                                                                                                                                                                       True
427                                                                                                                                                                                                                                                                                                                                                                            This is how we all should react
428                                                                                                                                                                                                                                                         What position does the Hinduism traditionally have on self-torture to test faith? Specifically something as directly harmful as self-flagellation?
429                                                                                                                                                                                                                                                                                                                                                      The Beauty and Elegance of White Marble Hindu Statues
430                                                                                                                                                                                                                                                                                                                                                                                               Vote for BJP
431                                                                                                                                                                                                                                                                                                                                                       The Role of Colors in Lord Shiva Idol Representation
432                                                                                                                                                                                                                                                                                                                                                                                               Secular >.>.
433                                                                                                                                                                                                                                                                                                                                                                              Kattar Dharmic Periodic Table
434                                                                                                                                                                                                                                                                                                                                                                       The Hinduism You've Been Waiting For
435                                                                                                                                                                                                                                                                                                                                                      How Our Ancient Rishis Preserved The Vedas Flawlessly
436                                                                                                                                                                                                                                                                                                                                         Question about Hindutva claiming that pre-Islamic Arabia was Vedic
437                                                                                                                                                                                                                                                                                                                                                                                            Blasphemy karbe
438                                                                                                                                                                                                                                                Can muslim be compared as jews of the german state or is it just propaganda by islamist to whitewash their crimes committed by them in the name of religion
439                                                                                                                                                                                                                                                                                                                                               Unlocking the Secrets of Hindu Philosophy Through Rare Books
440                                                                                                                                                                                                                                                                                                                                                                                Achaaa!! Thik haiiiii!!! :|
441                                                                                                                                                                                                                                                                                                                            B\001l\023[wår//,>2G6M50 Traïn Accident: RSS, ABVP, BajraEg Dal Help Rescue Ops
442                                                                                                                                                                                                                                                                                                                                                                        Religious Affiliation in Bangladesh
443                                                                                                                                                                                                                                                                                                                                 How Hindi Books on Spirituality Can Help You Connect with Your Inner Self?
444                                                                                                                                                                                                                                                                                                                                                                               Need to shut some people up.
445                                                                                                                                                                                                                                                                                                                                                                     How Is Faith Defined In Bhagavat Gita?
446                                                                                                                                                                                                                                                                                                                                                                                                 Saluteee!!
447                                                                                                                                                                                                                                                                                                                                           A shocking rescue operation from Pune (Source links in comments)
448                                                                                                                                                                                                                                                                                                                                                         Vedic Philosophy: Key Concepts from the Four Vedas
449                                                                                                                                                                                                                                                                                                                                                                                            Curious thought
450                                                                                                                                                                                                                                                                             When DMK Founder Annadurai Belittled The Historic Sengol &amp; Insulted The Hindu Mutt That Gave It To Nehru - The Commune Mag
451                                                                                                                                                                                                                                                                                                                                                                                 Read it and kindly share..
452                                                                                                                                                                                                                                                                                                                                                                  The essence of the Svetasvatara Upanishad
453                                                                                                                                                                                                                                                                                                                                        The Connection Between the Chandogya Upanishad and Other Upanishads
454                                                                                                                                                                                                                                                                                                                                                  I made a video on the goa inquisition, it's my 1st video:
455                                                                                                                                                                                                                                                                                                                                                                             Title bhi Jai Jagannath bolega
456                                                                                                                                                                                                                                                                                                                                     Brihadaranyaka Upanishad: The Key to Achieving Spiritual Enlightenment
457                                                                                                                                                                                                                                                                                                                                                               The Teachings of Yama in the Katha Upanishad
458                                                                                                                                                                                                                                                                                                                                           Cramp pain ho rha tha toh to divert my mind i drew a sketch \n<û
459                                                                                                                                                                                                                                                                                                                                                                                                       Shiv
460                                                                                                                                                                                                                                                                                                                                                                                                    7 kanda
461                                                                                                                                                                                                                                                                                                                                                                         Paar na logoge shree raam ke bina&
462                                                                                                                                                                                                           ¢¾\u0095¾ ¬¿¶Í¬¬¿¦Í¯¾²¯¼. \fh\001k\001 University. B\001Egl\001d\023[a. East BaEg\001l. Pkrva BaEga. This is what you get,, when you resort to too much Muslim appeasement {Isl\001m pandering}.
463                                                                                                                                                                                                                                                                                                                                                                       Snapchat is Hinduphobic #bansnapchat
464                                                                                                                                                                                                                                                                                                                                                   Finding Inner Peace and Happiness with Mundaka Upanishad
465                                                                                                                                                                                                                                                                                                                                                                   Doleshwar Mahadev Shiv Puran Katha Day 7
466                                                                                                                                                                                                                                                                                                                                                 My Sisters &amp; Brothers! It's time to fight for freedom!
467                                                                                                                                                                                                                                                                                                                                                       The beauty of Hindutva carnatic music "Jeeva Nadhi "
468                                                                                                                                                                                                                                                                                                                                           Ur ancestors r vishnu worshippers and u r watching this song=%=%
469                                                                                                                                                                                                                                                                                                                                                     How Taittiriya Upanishad Influenced Vedanta Philosophy
470                                                                                                                                                                                                                                                                                                                                                                   Doleshwar Mahadev Shiv Puran Katha Day 6
471                                                                                                                                                                                                                                                                                                                                   When Rana Pratap captured the wife and daughter of a top Mughal general.
472                                                                                                                                                                                                                                                                                                                                                  The Wisdom of Kena Upanishad: Key Lessons for Modern Life
473                                                                                                                                                                                                                                                                                                                                                                  Dholeshwar Mahadev Shiv Puran Katha Day 5
474                                                                                                                                                                                                                                                                                                                                                Bhagwa Chaddi ki power abhi libranduo ko malum nahi hai =\b
475                                                                                                               Here is the video of that Paks person who has revealed the education that mad@rsas are giving, everywhere including India. And the result of this system, we continuously seeing in our society, even if we close our eyes, it's happening. A little pinch of example is pinned in comments.
476                                                                                                                                                                                                                                                                                                                                                                       Doleshwar Shiv Mahapuran Katha Day 4
477                                                                                                                                                                                                                                                                                                                                                Exploring the Deep Philosophical Concepts of Isha Upanishad
478                                                                                                                                                                                                                                                                                                                                                               Doleshwar Mahadev Shiv Mahapuran Katha Day 3
479                                                                                                                                                                                                                                                                                                                                                         Day 2 Dholeshwar Mahadev Shiv Puran Pradeep Mishra
480                                                                                                                                                                                                                                                                                                                                                                               We have gained more brother 
481                                                                                                                                                                                                                                                                                                                                                           Exploring the Spiritual Depth of Ashtavakra Gita
482                                                                                                                                                                                                                                                                                                                                                                    Kejriwal ka sach @hinducafe follow karo
483                                                                                                                                                                                                                                                                                                                                                               Doleshwar Mahadev Shiv Mahapuran Katha Day 1
484                                                                                                                                                                                                                                                                                                                                                Next time a bhimta claims Asurs to be dalits, show him this
485                                                                                                                                                                                                                                                                                                                                       Original names of Hindu cities which were renamed by Muslim invaders
486                                                                                                                                                                                                                                                                                                                                              How they are cutting roots of country in greed of power....>,
487                                                                                                                                                                                                                                               I've been engaged in an edit war for a month now. They put a incorrect map of the empire when the page itself says that it extended from attock to thanjavur
488                                                                                                                                                                                                                                                                                                                                                    Understanding the Role of Yajurveda in Vedic Traditions
489                                                                                                                                                                                                                                                                                                                                                                         Alternatives to Western Platforms.
490                                                                                                                                                                                                                                                                                                                                  Glimpse of Heaven. Mandir wahi ban raha hai. >\u0094=Õ Jai Shree Ram =1=O
491                                                                                                                                                                                                    Biased wikipedia calling Kerala Story "BJP/Sangh Parivar propaganda" and love jihad "a conspiracy theory". They also called Kashmir Files "fictional" and "inaccurate". Soros at work? Read all slides.
492                                                                                                                                                                                                                                                                                                                                               Discovering the Beauty of Samaveda: The Oldest Veda of India
493                                                                                                                                                                                                                                                                                                                                                  *A0@ 6\002\0250>\032>0M/ on place of women in 8(>$( '0M. 
494                                                                                                                                                                                                                                                                                                                                                                  art of Raja Ravi Verma - Jay Jay Shri Ram
495                                                                                                                                                                                                                                                                                                                                                                         Which type of society do you like?
496                                                                                                                                                                                                                                                                                                                                                                                     Bhagya badalne ke upay
497                                                                                                                                                                                                                                                                                                                    Sickulars will be happy because this why what Karnataka voted to G@ddar Kongress....>\f
498                                                                                                                                                                                                                                                                                                                      This is a big problem in several portions of Bhaarat. Do you guys also feel the same?
499                                                                                                                                                                                                                                                                                                                       Next time a Librandu suggests you to build hospital instead of Mandir, show him this
500                                                                                                                                                                                                                                                                                                                                                                           sharirik kast door karne ke upay
501                                                                                                                                                                                                                                                                                                                                                   The Symbolism of Samsara in Hindu Mythology and Folklore
502                                                                                                                                                                                                                                                                                                                                            mohmmad Ali Jinnah: Hindu parivar se muslim banne tak ka safar.
503                                                                                                                                                                                                                                                                                                                                                 Manoj Pradhan - Kattar Jagannath Bhakt, Kandh Adivasi Hero
504                                                                                                                                                                                                                                                                                                                                                                                    Commie-Jihadi bhai bhai
505                                                                                                     This youtuber guy has became a new face of tool kit agenda distributor. He will soon be controlling or influenceing a huge proportion of sickulars and isl@mist soon. And by this he will be able to make huge amount of power and money from West and who are anti-govt. inside and outside of India.
506                                                                                                                                                                                                                                                                                                                                                                                                This p!g >,
507                                                                                                                                                                                                                                                                                               JAY BAJRANGBALI: Indian Army soldiers roar in UK, chant 'Jai Bajrang Bali' slogans after recent row in India
508                                                                                                                                                                                                                                                                                                                                                 I didn't remove my tweet. I submitted an appeal,, instead.
509                                                                                                                                                                                                                                                                                                                                            When Nadir Shah simply murdered more than 17000 Hindus in Delhi
510                                                                                                                                                                                                                                                                                                                                  Soros ka T@tt@, D.T@tti apni hi pool kholne ka proof khud dikha raha...!!
511                                                                                                                                                                                                                                                                                                   Status of a Hindu in Pakistan. He told how Muslims are converting girls by taking them from their homes.
512                                                                                                                                                                                                                                                                                                                                                              The Mahabharata: Lessons in Ethics and Dharma
513                                                                                                                                                                                                                                                                                                                                                                                               Kon jeetega?
514                                                                                                                                                                                                                                                                                                                                                   Dhruv Rathee half baked facts to manipulate his audience
515                                                                                                                                                                                                                      &< \025G02> 8M\037K0@: 0>\034(@$? \025G \025>0# 0>\034M/ \0250 09G ,H(, 5?&G6 .G\002 \017\0258>% im+ &G6K\002 .G\002 9K\027@ 0?2@\034< \023 \025<.>\b .G\002 0#5@0-82.>( 8G \006\027G
516                                                                                                                                                                                                                                                                                                                                                              Swami Samarth Shiv Puran Katha Day 7 in Hindi
517                                                                                                                                                                                                                                                              A Website Named "Youngisthan" Shows Shri Krishna-Radha In A Vile &amp; Disrespectful Manner, All In The Name Of \034Freedom of Expression\035
518                                                                                                                                                                                                                                                                                1940s and today:: Rock In Kanyakumari Where Swami Vivekananda Meditated For 3 Days ( 25th December to 27 December) In 1892.
519                                                                                                                                                                                                                                                                                                                                                                                          Naxalio ki thukai
520                                                                                                                                                                                                                                                                                                                                       Sudhansu Trivedi gave a befitting reply to the descendant of Mughal.
521                                                                                                                                                                                                                                                                                                                                Lord Jagannath temple is a Hindu temple located in the town of Namchi, Asam
522                                                                                                                                                                                                                                                                                                                                                                   Swami Samarth Shiv Mahapuran Katha Day 6
523                                                                                                                                                                                                                                                                                                                                                                           Status Of Christianity In Europe
524                                                                                                                                                                                                                                                                                              \034Hum Dekhenge\035 \023 An Anti-Hindu, Muslim Suprémacist Song That India <î<ó Has Just Begun To Understand
525                                                                                                                                                                                                                                                                                                                                                                             Help us make Krishna on /place
526                                                                                                                                                                                                                                                                                                                                                                   Help us make Shri Krishna art in r/place
527                                                                                                                                                                                                                                                What the hell is happening in India ? I can't imagine what these women might have been through, god know what actions will be taken against these animals .
528                                                                                                                                                                                                                                                                               Please Report This Channel. It is Defaming Hinduism and Spreading False Information. It has so many Views in all the Videos.
529                                                                                                                                                                                                                                                                                                                       Day 7 || 6M0@ $M/>\027 6?5 .9> *A0># \025%> || Shri Shiv Maha Puran Katha ll \005...
530                                                                                                                                                                                                                          Dussehra Festival at Kulasai Mutharamman Temple - The tenth day of the Navaratri festival is celebrated in a completely different way in Kulasai, Tamil Nadu than in other India.
531                                                                                                                                                                                                                                                                                                                                                              What is Love J1had? What is the proof for it?
532                                                                                                                                                                                                                                                                                                                       Day 6 || 6M0@ $M/>\027 6?5 .9> *A0># \025%> || Shri Shiv Maha Puran Katha ll \005...
533                                                                                                                                                                                                                                                                                                                          Do you think that American born Indian Hindus are the most religiously dedicated?
534                                                                                                                                                                                                                                                                                                                       Day 5 || 6M0@ $M/>\027 6?5 .9> *A0># \025%> || Shri Shiv Maha Puran Katha ll \005...
535                                                                                                                                                                                                                                                                                                                       Day 4 || 6M0@ $M/>\027 6?5 .9> *A0># \025%> || Shri Shiv Maha Puran Katha ll \005...
536                                                                                                                                                                                                                                                             Hanuman\031jis EPIC in itself is far far grand than any story telling. This teaser does justice to our LIVING LEGEND. \034/ ,\0340\002\027 ,2@
537                                                                                                                                                                                                                                                                                                              Day 3 ll 6M0@ $M/>\027 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0> ll \005...
538                                                                                                                                                                                                                                                                                                                                              Be a Seeker like Arjuna: Embracing the Path of Self-Discovery
539                                                                                                                                                                                                                                                                                                              Day 2 ll 6M0@ $M/>\027 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0> ll \005...
540                                                                                                                                                                                                                                                                                                                                                                Hindu Supremacy & and why not?? ft. &6>5$>0
541                                                                                                                                                                                                                                                                                                                                         Hindu Scriptures: Unlocking the Rich Heritage and Spiritual Wisdom
542                                                                                                                                                                                                                                                                                                              Day 1 ll 6M0@ $M/>\027 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0> ll \005...
543                                                                                                                                                                                                                                                                                                                                                                          \025\0022H*>\025 0>7M\037M0 &0M6(
544                                                                                                                                                                                                                                                                                                                                           Krishna's Departure and Reincarnation: A Divine Journey Unveiled
545                                                                                                                                                                                                                                                                               Ex-hindu? more like a bunch of clowns how easy it is to expose these fools. Post report aur dislike Karo link caption ma ha.
546                                                                                                                                                                                                                                                                                                                               =7Day - 07 ll Shiv MahaPuran Pradeep Mishra live ll Shiv MahaPuran Katha ...
547                                                                                                                                                                                                                                                                                                                                                                                                  Tolerence
548                                                                                                                                                                                                                                                                                                                                                   The Significance of Bel Leaves for Worshiping Lord Shiva
549                                                                                                                                                                                                                                                                                                                   =7Day - 06 ll 6M0@ ,M09M. 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0>...
550                                                                                                                                                                                                                                                                                                                                          Nine Steps of Hindu Devotion: Unlocking the Path to True Devotion
551                                                                                                                                                                                                                                                                                                                    Day 5 ll 6M0@ ,M09M. 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0> ll ...
552                                                                                                                                                                                                                                                                                                                                                Bollywood to make this movie - Kajal HINDUsthani supremacy!
553                                                                                                                                                                                                                                                                                                                       Bhrama Shiv Purana day 4 6M0@ ,M09M. 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&...
554                                                                                                                                                                                                                                                                     You won't help us when we need, but after 3 decades you would make a film on us and express your useless anger on what happened to us.
555                                                                                                                                                                                                                                                                                                                                            What does Sri Krishna say about happiness in the Bhagavad Gita?
556                                                                                                                                                                                                                                                                                                                   =7 Day - 03 ll 6M0@ ,M09M. 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0...
557                                                                                                                                                                                                                                                                                                \0250M\034 .A\025M$? \025G 2?\017 \t*>/ *M0&@* .?6M0> | \0250M\034 .A\025M$? \025G 2?\017 \t*>/ | Shivyu...
558                                                                                                                                                                                                                                                                                                            This whole narrative has been repeated many times but people fail to recognize a simple pattern
559                                                                                                                                                                                                                                                                                                                   =7 Day - 02 ll 6M0@ ,M09M. 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0...
560                                                                                                                                                                                                                                                                                                                                                                                 Bhagavad Gita Books Online
561                                                                                                                                                                                                                                                                                                                                  Bhagavat Gita Chapter 2 Verse 15 =O=Õ | Kannada #shorts #bhagavatgita #ai
562                                                                                                                                                                                                                                                                                                                                                       Enhance Your Spiritual Practice with the Shri Yantra
563                                                                                                                                                                                                                                                                                                                      Day 01ll 6M0@ ,M09M. 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0> l...
564                                                                                                                                                                                                                                                                       What do Hindu Nationalists think about Indian Christians? Is Christianity's growth in India considered a massive problem like Islam?
565                                                                                                                                                                                                                                                                                                                                             How to Simplify Your Satyanarayan Puja ?: Book a Pandit Online
566                                                                                                                                                                                                                                                                                                                                                        Understanding Karma and Dharma in the Bhagavad Gita
567                                                                                                                                                                                                                                                                                                                                               We can't depend on Army and Police for protection these days
568                                                                                                                                                                                                                                                                                                                                       Meanings of jaati, varn, varg, gotra and kul every Hindu should know
569                                                                                                                                                                                                                                                                                                                                                    Understanding the Ego: Liberation through Shiva's Dance
570                                                                                                                                                                                                                                                                                                                                                          And they say Dravidians aren't Hindus! What crap!
571                                                                                                                                                                                                                                                                                                                                  Give shastra to your sisters, not broom. Marry them to dharma, not groom.
572                                                                                                                                                                                                                                                                                                                                                         Our situation is an outcome of the choices we make
573                                                                                                                                                                                                                                                                                                                                                                  Guru - Are we ready to receive him / her?
574                                                                                                                                                                                                                                                                               "Welcome to the Land of historic temples" built during the 12th &amp; 13th centuries by the then kings of the Hoysala Empire
575                                                                                                                                                                                                                                                                                                                                                    Two tight slaps from the US Supreme Court to liberandus
576                                                                                                                                                                                                                                                                                                                         What if I told you that Alauddin Khilji's daughter wanted to marry a Hindu prince?
577                                                                                                                                                                                                                                                                                                                                                  The Place and Significance of Bhakti in the Bhagavad Gita
578                                                                                                                                                                                                                                                                                                                                                                    Do most Hindu Nationalists like the US?
579                                                                                                                                                                                                                                                                                                                                                                    Story Of Sharanga, Lord Vishnu's Weapon
580                                                                                                                                                                                                                                                                                                                                                             Bhaichara gang >! vs HHS Balasaheb Thackrey =ÿ
581                                                                                                                                                                                                                                                                                                                                                            Exposing the lies spread by LGBT about Hinduism
582                                                                                                                                                                                                                                                                                                                                               Embrace Divine Blessings with Online Pandit Booking Services
583                                                                                                                                                                                                                                                                                                                                               Exploring the Various Modes of Conception in the Mahabharata
584                                                                                                                                                                                                                                                                                                                                                 What do Hindu Nationalists think about Israel and Judaism?
585                                                                                                                                                                                                                                                                                                                                                          There is always worse when Mohandas is concerned.
586                                                                                                                                                                                                                                                                                                                                      How to Choose the Best Puja Kit for Any Festival: The Ultimate Guide?
587                                                                                                                                                                                                                                                                                                                                                                         The Power of Symbolism in Ramayana
588                                                                                                                                                                                                                                                                                                                                                                          Genocide is happening as we speak
589                                                                                                                                                                                                                                                                                                                    Reportedly an ancient temple was found inside a mosque in Beed district of Maharashtra.
590                                                                                                                                                                                                                                                                                                                                                                                                          .
591                                                                                                                                                                                                                                                                                                                                                   Embrace Tradition with Convenience: Puja Shopping Online
592                                                                                                                                                                                                                                                                                                                                                                                  Why Worship Lord Ganesha?
593                                                                                                                                 In the 2020 Indian American Attitudes Survey, Hindus were the least religious among major groups: the least likely to say religion is very important to them, the least likely to attend religious services, and the least likely to pray. What are your thoughts on this?
594                                                                                                                                                                                                                                                                                                                                        What do Hindu Nationalists think about Sikhs, Jains, and Buddhists?
595                                                                                                                                                                                                                                                                                                                                                                               Random art with deep meaning
596                                                                                                                                                                                                                                                                                                                                                                             same feeling different vibe >á
597                                                                                                                                                                                                                                                                                                                                        The Role and Significance of Devotion (Bhakti) in the Bhagavad Gita
598                                                                                                                                                                                                                                                                                                                                                                                  Hinduism is truly liberal
599                                                                                                                                                                                                                                                                                                                                Unmasking 'Love Jihad': The dangerous impact of an Indian conspiracy theory
600                                                                                                                                                                                                                                                                                                                                                                       The curious case of "Swami" Agnivesh
601                                                                                                                                                                                                                                                                                                                              Embrace spirituality with ease &amp; convenience: Shop for puja items online!
602                                                                                                                                                                                                                                                                                                                                               Need help for context! Seems like a normal Islamic activity.
603                                                                                                                                                                                                                                                                                                                                                              Amazing fight scene when Krishna fought Arjun
604                                                                                                                                                                                                                                                                                                                                                 Divided by nations united by jagannath...Jai Jagannath=L=L
605                                                                                                                                                                                                                                                                                                                                                                               process to make a Muslim guy
606                                                                                                                                                                                                                                                                                                                            Creating Divine Connections: Book a Pandit Online for Sacred Events: Pujashoppe
607                                                                                                                                                                                                                                                                                                                            The Spiritual Benefits of Practicing Samkhya Yoga According to the Bhagavadgita
608                                                                                                                                                                                                                                                                                                                                                                                           Happy Rath Yatra
609                                                                                                                                                                                                                                                                                                                                            Celebration of Ganesh &amp; Lakshmi Puja on Diwali | Pujashopee
610                                                                                                                                                                                                                                                                                                                                                              Incredible Powers of Hanuman You Need to Know
611                                                                                                                                                                                                                                                                                                                                                                                        Truth is Eternal...
612                                                                                                            My Message as a Hindu to RSS Idiots and Mohan Bhagwat Who Keep on Bringing Up this Akhand Bharat crap - We Hindus don't want any regions infested with radical Islam or any more Muslims in India. Bhagwat should stop ranting about this so-called Akhand Bharat concept &amp; should shut up.
613                                                                                                                                                                                                                                                                                                                                                              Is our culture and tradition a joke to them??
614                                                                                                                                                                                                                                                                                                                                                                                                Masterpiece
615                                                                                                                                                                                                                                                                                                                                                 9 Timeless Lessons from the Ramayana for a Meaningful Life
616                                                                                           My Message as a Hindu to RSS Chaddi Idiots and Mohan Bhagwat Who Keep on Bringing Up this Akhand Bharat crap - We Hindus don't want any regions infested with radical Islam or any more Muslim terrorists in India. Bhagwat should stop ranting about this so-called Akhand Bharat concept &amp; should shut up.
617                                                                                                                                                                                                                                                                                                                                                       The Power of Om: Understanding its Deep Significance
618                                                                                                                                                                                                                                                                                                                                                       Exploring the Nine Types of Devotion in Shiva Purana
619                                                                                                                                                                                                                                                                                                                                                                                            True Hindustani
620                                                                                                                                                                                                                                                                                                                                                            Bal Hanuman Story I Hope it will make your day.
621                                                                                                                                                                                                                                                                                                                                                                      Significance Of Hinduism's Holy Texts
622                                                                                                                                                                                                                                                                                                                                                     The Importance of the Bhagavad Gita in the Mahabharata
623                                                                                                                                                                                                                                                                                                                                                                                                       Text
624                                                                                                                                                                                                                                                                                                                                                                                              Jai Shree Ram
625                                                                                                                                                                                                                                                                                                                    Day - 05 ll 6M0@ *0M%G6M50 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M...
626                                                                                                                                                                                                                                                                                                                                               Unveiling the Mythological Stories: Popular Puranas in Hindi
627                                                                                                                                                                                                                                                                What do Hindu Nationalists think about H1B visas and Indians going to other countries to live and work after getting an education in India?
628                                                                                                                                                                                                                                                                                                                                                                                              Fark saaf hai
629                                                                                                                                                                                                                                                                                                                             Day 3 | Partheshwar Shiv Mahapuran Katha | 6M0@ *>0M%G6M50 6?5.9>*A0># \025...
630                                                                                                                                                                                                                                                                                                                             Day 2 | Partheshwar Shiv Mahapuran Katha | 6M0@ *>0M%G6M50 6?5.9>*A0># \025...
631                                                                                                                                                                                                                                                                                                                                           Art and Symbolism in Hindu Temples: Decoding the Spiritual Icons
632                                                                                                                                                                                                                                                                                                                                            How many Hindus were killed by Aurangzeb and the Mughal Empire?
633                                                                                                                                                                                                                                                                                                                             Partheshwar Shiv Mahapuran Katha Day 1 | *>0M%G6M50 6?5 *A0># \025%> *92> &...
634                                                                                                                                                                                                                                                                                                                                                                Unveiling the Symbolism in Hindu Scriptures
635                                                                                             Abdul is angry. Claims that he incurred loss of 10 lakhs because his tin-shed puncture shop was demolished by Haryana government. Abdul got frustrated and demanded that media should pay for his loss. Love such videos coming from Mewat, Haryana. =\006=\006. The biggest demolition ever happened in India
636                                                                                                                                                                                                                                                                                                                                             Librandu : A chomu so open minded their brains have fallen out
637                                                                                                                                                                                                                                                                                                                    I was very angry while making this video on Rahul Gnadhi's stupid remarks in Lok Sabha.
638                                                                                                                                                                                                                                                                                                                                                                                             He spoke facts
639                                                                                                                                                                                                                                                                                                                              Exploring the Melodies of Samaveda: Ancient Chants and Spiritual Significance
640                                                                                                                                                                                                                                                                                                           Delhi Services Bill was more than a legilation. It showed the brute majority of Modi government.
641                                                                                                                                                                                                                                                                                                                                                 The Role of Vedas in Indian Culture: Hindi Interpretations
642                                                                                                                                                                                                                                                                                                                                                                                         Veer Savarkar =%=©
643                                                                                                                                                                                                                                                                                                                                       When Chacha was not busy mounting , he would spit hard hitting facts
644                                                                                                                                                                                                                                                                                                                                                                      It's not fake / fraud ( help needed )
645                                                                                                                                                                                                                                                                                                                              Is This Sort Of Behavior The Norm By Marathi Hindutvas Towards South Indians?
646                                                                                                                                                                                                                                                                                                             Goosebumps - If not for sacrifices of Kar Sewaks, do you think we would have got Ram Mandir !!
647                                                                                                                                                                                                                                                                                                                       Kawad Shiv Mahapuran Katha Day 7 | \025>5!< 6?5 *A0># \025%> 8>$5>\002 &?( | 0>/*...
648                                                                                                                                                                                                                                                                                                                                    Exploring the Sanskrit Language: Decoding Bhagavad Gita's Sacred Verses
649                                                                                                                                                                                                                                                                                                                                                                            We need a neo-hindutva movement
650                                                                                                                                                                                                                                                                                                                                                                                              Shri Munje =O
651                                                                                                                                                                                                                                                                                                                       Kawad Shiv Mahapuran Katha Day 6 | \025>5!< 6?5 *A0># \025%> \033 > &?( | 0>/*A0 ...
652                                                                                                                                                                                                                                                                                                                                                                       This scene has a special fanbase..=%
653                                                                                                                                                                                                                                                                                                                                                                             India will remain Ram Rajya =%
654                                                                                                                                                                                                                                                                                                                                                     5 \005\0278M$ \025> &?( \025M/K\002 .9$M5*B0M# .>(> 9H
655                                                                                                                                                                                                                                                                                                                                                                       Ravish Kumar Rap on Monu Manesar=%=%
656                                                                                                                                                                                                                                                                                                                                                                                              Hindu culture
657                                                                                                                                                                                                                                                                                                                    When you are in the middle of Gyanvapi Survey and realise even your phone has RAM&.=O<ü
658                                                                                                                                                                                                                                                                                                                                                                                         Darr ka mahaul hai
659                                                                                                                                                                                                                                                                                                                 Day 5 | Kawad Shiv Mahapuran Katha | \025>5!< 6?5 *A0># \025%> *>\002\0325>\002 &?( 0>/...
660                                                                                                                                                                                                                                                                                                                                                                                 Pov: You are a Sanatani =©
661                                                                                                                                                                                                                                                                                                           Ancient Insights for Contemporary Living: Applying Wisdom from Hindu Scriptures to Everyday Life
662                                                                                                                                                                                                                                                                                                                           [Republic World] Nuh Truth: Arnab Exposes How Hindus Were Targeted, Then Defamed
663                                                                                                                                                                                                                                                                                                                       Day 4 | Kawad Shiv Mahapuran Katha | \025>5!< 6?5 *A0># \025%> \032L%> &?( | 0>/*...
664                                                                                                                                                                                                                                                                                                                                                       Mahabharata: A Story of Family Feuds and Forgiveness
665                                                                                                                                                                                                                                                                                                                   Day 03 ll 6M0@ \025>5!< 6?5.9>*A0># \025%> ll *B\034M/ *\002!?$ *M0&@* \034@ .?6M0> l...
666                                                                                                                                                                                                                                                                                                                                                                                Peaceful Community in Mewat
667                                                                                                                                                                                                                                                                                                                                                              Another major win for Hindus in Gyanvapi case
668                                                                                                                                                                                                                                                                                                                                   Shrimad Bhagwat Geeta's Influence on Indian Art, Literature, and Culture
669                                                                                                                                                                                                                                                                                                                                                                                         Ganesh ji ki katha
670                                                                                                                                                                                                                                                                                                                                                                                \034/ 6M0@ 0>. =©=1=I\017=©
671                                                                                                                                                                                                                                                                                                                                                                                  Add more of what you know
672                                                                                                                                                                                                                                                                                                                                                                   Peaceful community doing peaceful things
673                                                                                                                                                                                                                                                                                                                                                                  Yogi Ji Roasts I.N.D.I.A in ANI Interview
674                                                                                                                                                                                                                                                                                                                             Kawad Shiv Mahapuran Day 2 | Tilda Newra Shiv Mahapuran Katha | 0>/*A0 \033...
675                                                                                                                                                                                                                                                                                      Do you know Hindus are minority in many parts of India - Nuh &amp; Mewat is tip of the iceberg said Kajal HINDUsthani
676                                                                                                                                                                                                                                                                                                                                                                                     ((M9G .A(M(G \034?9>&@
677                                                                                                                                                                                                                                                                                                                                                   Exploring Vedic Deities: Gods and Goddesses of the Vedas
678                                                                                                                                                                                                                                                                                                                                                                                           Thoughts on this
679                                                                                                                                                                                                                                                                                                                                                            I feel proud to be Hindu because of these chads
680                                                                                                                                                                                                                                                                                                                             Day 1 | Kawad Shiv Mahapuran Katha Pradeep Mishra Live | 6M0@ \025>5!< 6?5 ...
681                                                                                                                                                                                                Muslims don't want Hindus in Mewat. The BJP never protects its core voters in such massacres. As @ARanganathan72 says, Hindus are even worse than Maoris and the Red Indians ! They have no place to go to!
682                                                                                                                                                                                                                                                                                                                         Lion Yogi Adityanath wants Muslims to apologize for making Gyanvapi into a mosque!
683                                                                                                                                                                                                                                                                                                                                             Lord Shiva's Divine Identity: Exploring His Unique Vedic Names
684                                                                                                                                                                                                                                                                                                                                                                                    Solah Somvar Vrat Katha
685                                                                                                                                                                                                                                                                                                                                                                    Do most Hindu Nationalists like the US?
686                                                                                                                                                                                                                                                                                                      The British and modern liberals have ensured that Brahmins stay poor and unable to influence Hindutva
687                                                                                                                                                                                                                                                                                                                                                                        The Brahmin genocide in Maharashtra
688                                                                                                                                                                                                                                                                                                                                                      TrueIndology begs for his life from Devendra Fadnavis
689                                                                                                                                                                                                                                                                                                                                                   Tight slap from Narendra Modi to China on stapled visas!
690                                                                                                                                                                                                                                                                                                                                                                    What a tremendous performance, Yogi Ji!
691                                                                                                                                                                                                                                                                                                                            Massive blow to people who worship the dead. Moharram won't be a holiday in UP.
692                                                                                                                                                                                                                                                                                                                      Meet ISIS terrorist Adnan Sarkar who plotted against Bharat while practicing medicine
693                                                                                                                                                                                                                                                                                                                                      Hindu Deities (Gods) \023 Each Day of the Week Dedicated to Which God
694                                                                                                                                                                                                                                                                                                                                                             *M0&@* .?6M0> \025@ \006\034 \025@ \025%> 2023
695                                                                                                                                                                                                                                                                                                                       There was no terrorism and genocide of the Kashmiri Pandits in Kashmir- Modi Sarkar!
696                                                                                                                                                                                                                                                                                                                                         Krishna and Dhritrashtra also did love jihad, says Congress leader
697                                                                                                                                                                                                                                                                                                                                                        Devendra Fadnavis wants Hindu thought leaders dead.
698                                                                                                                                                                                                                                                                                                                                                                                                 >\035>\035
699                                                                                                                                                                                                                                                                                                                                                            This Hindu tigress has taken Karnataka by storm
700                                                                                                                                                                                                                                                                                             How would Muslims and Christians be treated in Akhand Bharat? Would only Hinduism be allowed in Akhand Bharat?
701                                                                                                                                                                                           DISCUSSION :so guys I got DM ab this cult his Kabir God / ramapal sant and follower's r literally defaming our God's and religion is there anyway to ban this community? I have seen couple of post here ab this
702                                                                                                                                                                                                                                                                                                                                                Discover The Convenience of Shopping From Puja Store Online
703                                                                                                                                                                                                                                                                                                                               Day 6 || $* 6?5 .9> *A0># \025%> || Tap Shiv Maha Puran Katha #pradeepmishra
704                                                                                                                                                                                                                                                                                                                                                         Why did Lord Ganesha adopt the rat as his vehicle?
705                                                                                                                                                                                                                                                                                                                                                            *M0&@* .?6M0> \025@ 2>\a5 \025%> \006\034 \025@
706                                                                                                                                                                                                                                                                                                                         Hanuman Ji Drawing -Jai Shri Ram #hindu #sanatandharma #ayodhya #ramayan #art #rss
707                                                                                                                                                                                                                                                                                                                                                                                           SAVE MAHADEV !!!
708                                                                                                                                                                                                                                                                                                                                                        What do Hindu Nationalists think about eating meat?
709                                                                                                                                                                                                                                                                                                                        DAY 4 || 6M0@ $* 6?5 *A0># \025%> 9?\002&@ .G\002 || Shri Shiv Maha Puran Katha ...
710                                                                                                                                                                                                                                                                                                                                                                                         Bhajarangbali Art 
711                                                                                                                                                                                                                                                                                                                             Day - 03 | Tap Shiv Mahapuran Pradeep Mishra Live | 6?5 .9>*A0># \025%> | ....
712                                                                                                                                                                                                                                                                                                                                                               The Main Message of the Upanishads Explained
713                                                                                                                                                                                                                                                                                                                                                                                   Ask Llama - Lord Krishna
714                                                                                                                                                                                                                                                                                                                                        Oppenheimer, sex, Bhagwad Gita and our fixation with the white skin
715                                                                                                                                                                                                                                                                                                                                                                          Oppenheimer sells movie with sex!
716                                                                                                                                                                                                                                                                                                                                      Subcontinent converts fancy the mazars more than staunch Arabs - WHY?
717                                                                                                                                                                                                                                                                                                                                                                                          CHAD R/INDIAPLACE
718                                                                                                                                                                                                                                                                                                                             Day 2 | Tap Shiv Mahapuran Pradeep Mishra Live | 6?5 .9>*A0># \025%> | .H(*...
719                                                                                                                                                                                                                                                                                                                                                           Taking some creative liberty to make Oppenheimer
720                                                                                                                                                                                                                                                                                                All nationalist Indians, if you care about Bharat, please see this video on Manipur and make this go viral!
721                                                                                                                                                                                                                                                                                                                                                                                         Chad r/India place
722                                                                                                                                                                                                                                                                                                                          Day 1 | Tap Shiv Mahapuran Pradeep Mishra Live | 6?5 .9>*A0># \025%> | .H(*A0@ UP
723                                                                                                                                                                                                                                                                                                                                                                                               Shri Krishna
724                                                                                                                                                                                                                                                                                                                                                         The Hindu Matrix - Scientific evidence for Puranas
725                                                                                                                                                                                                                                                                                   \025M/> ,K2> 6M0@ \025C7M# (G \0050M\034A( 8G \034, \0250M# (G .>\002\027@ \005*(G *M0>#K\002 \025@ -@\026 /#shrikrishna
726                                                                                                                                                                                                                                                                                                                            What is the term for religious devotion in Hinduism, and why is it significant?
727                                                                                                                                                                                                                                                                                                                                                                                                   Ma Durga
728                                                                                                                                                                                                                                                 Chad Hindus in Australia =% No stone pelting ,no violence no burning of public places .. that\031s the difference Hindustan Zindabad <î<ó Jai Shree Ram =©
729                                                                                                                                                                                                                                                                                                                                                                                 Namaste from Bharat =%=%=%
730                                                                                                                                                                                                                                                                                                                                                            The eighteenth chapter of Shrimad Bhagwat Geeta
731                                                                                                                                                                                                                                                                                                                                                                      Why Does Hinduism Have Multiple Gods?
732                                                                                                                                                                                                           27 temples have been destroyed to build Qutub Minar. The one built on the destruction of others will never be or should never be celebrated. History of Qutub Minar should be known by everyone.
733                                                                                                                                                                                                                                                                                                                                                        Introduction to Ayurveda: An Ancient Healing System
734                                                                                                                                                                                                                                                                                                                                                                     Bajrang Bali saves City of Shree Ram=©
735                                                                                                                                                                                                                                                                                                                               Sanatan means eternal and here is a 700 year old testimony from Indonesia =%
736                                                                                                                                                                                                                                                                                                                                Who said he wouldn't rock in saffron on international Stage as Bharat's PM?
737                                                                                                                                                                                                                                                                                                                              Ganesh Mantra with English Translation (Must Listen on this Ganesh Chaturthi)
738                                                                                                                                                                                                                                                                                \025M/K\002 .9?2>\023\002 \025> 6.6>( .G\002 \034>(> 50M\034?$ 9K$> 9H ?/ \034>( \0250 9H0>( 09 \034>\017\002\027G \006* =3
739                                                                                                                                                                                                                                                                                                                                                          And here starts a Weekend of Woes for Liberals =%
740                                                                                                                                                                                                                                                                                                             Sanatan Dharma beyond our Borders. Ganapati Celebrations Across the World. Be a Proud Hindu =%
741                                                                                                                                                                                                                                                                                                                                                               Mission Tamil Nadu. A Tsunami of Hindutva =%
742                                                                                                                                                                                                                                                                                                                                                                           Har Har Mahadev from Varanasi =%
743                                                                                                                                                                                                                                                                                                                                                                             What is the Hindu Sacred Text?
744                                                                                                                                                                                                                                                                                                                                           5 valuable life lessons that we can all derive from the Ramayana
745                                                                                                                                                                                                                                                                                                                        How Sikh Separatism and Alleged Assassinations Have Strained India-Canada Relations
746                                                                                                                                                                                                                                                                                                                                                                                  Legal Assistance required
747                                                                                                                                                                                                                                                                                                                                                                    Puranas - Unveiling the Legends of Gods
748                                                                                                                                                                                                                                                                                                                                                                                              Why celebrate
749                                                                                                                                                                                                                                                                                                                                                              Unlocking the Path to Spiritual Enlightenment
750                                                                                                                                                                                                                                                                                                                                                                      Is Bollywood Pro-Hindu or Anti-Hindu?
751                                                                                                                                                                                                                                                                                                           Bangladesh Cricketer Tanzim Hasan Shakib Under Scrutiny for Alleged Islamic Extremist Ideologies
752                                                                                                                                                                                                                                                                                                                                 7 Benefits Of Decorating Pooja Room With Brass God Idols At Home Or Office
753                                                                                                                                                                                                                                                                            \025M/K\002 ,A0G 2K\027K \025K ,A0G 5\025M$ .G 9@ '0M./\0250M. \025@ ,>$G />& \006$@ 9H\002d =3 #krishnamotivation #shrikrishna
754                                                                                                                                                                                                                                                                                                                    6M0@ 8?&M'?5?(>/\025 .\002$M0 \0240 \0060$@ || Shree siddhivinayak mantra and aarti ...
755                                                                                                                                                                                                                                                                                                                                                                                     Happy Birthday King =Q
756                                                                                                                                                                                                                                                                                                                                      The Power of Faith: Hindi Books that Deepen Your Spiritual Connection
757                                                                                                                                                                                                                                                                                                                                                                https://reddit.com/r/Hindumeme/s/ZFhK4eTESx
758                                                                                                                                                                                                                                                                                                                                                                                        r/JaiHind_JaiBharat
759                                                                                                                                                                                                                                                                                                                                                              Ramayana in Art and Culture: A Visual Journey
760                                                                                                                                                                                                                                                                                                                                               Hindi Diwas: Promoting Language Diversity and Unity in India
761                                                                                                                                                                                                                                 Vagdevi (Goddess Saraswati) Idol found by the guards inside the 11th century Kamal Maula\031s mosque in Madhya Pradesh. Another Hindu Temple that was turned Into a Mosque
762                                                                                                                                                                                                                                                                           Arvind Kejriwal opposed promotion of the Kashmir Files but is promoting movie Jawan himself. *H&>\a6@ &K\0272> 9H /G \025G\0340@
763                                                                                                                                                                                                                                                                                                                         The 1st #C295 tactical transport aircraft handed over to India by the @Airbus <î<ó
764                                                                                                                                                                                                                                                                                       \025M/> 8\032.A\032 -\0275>( 6?5 ->\002\027 *@$G %G / \025M/> 9H 8$M/ ? / 8\032 .G /9@ 9H \025M/> -K2G \025> *M08>&?
765                                                                                                                                                                                                                                                                                                                                                       The Sacred Trio of Hinduism: Brahma - Vishnu - Shiva
766                                                                                                                                                                                                                                                                                                                                          The Vibrant Tapestry of Diwali 2023: Causes and Celebration Ideas
767                                                                                                                                                                                                                                                                                                                                                    Sacred Stories: Legends and Myths from Hindu Holy Books
768                                                                                                                                                                                                                                                                                                                                                                                                 Yet Again!
769                                                                                                                                                                                                                                                                                                                                                               Kuldeep alone ruined paxtanis arrogance=\002
770                                                                                                                                                                                                                                                                                                                                              Hi I'm exmuslim would love to connect with my fellow brothers
771                                                                                                                                                                                                                                                                                                                                         Devotion and Rituals: How Shiv Maha Puran Influences Hindi Culture
772                                                                                                                                                                                                                                                                                                                                                                   Krishna Gets Angry on Arjuna #mahabharat
773                                                                                                                                                                                                                                                                                                                                                                         Modi's look for next G-20 Summit=%
774                                                                                                                                                                                                                                                                                                                                                                             That's why commies hate Bharat
775                                                                                                                                                                                                                                                                                                                                   Krishna Shows His Virata Avatar to Arjun | Mahabharat Status #mahabharat
776                                                                                                                                                                                                                                                                                 Patriotism is, fundamentally, a conviction that a particular country is the best in the world because you were born in it.
777                                                                                                                                                                                                                                                     6?5 \025G \034@5( \025@ *>\002\032 ,>$G/\034K \006*\025K \034@5( .G\002 8+2$> *>(G .G\002 .&& \0250G\027@ / \0240 \034@5( \025K 802 ,(>\017\027@ #shiv
778                                                                                                                                                                                                                                                                              I'm giving written references because without them people think it's just an opinion and not actually based in the scriptures
779                                                                                                                                                                                                                                                                                                                                                                                            RSS Initiatives
780                                                                                                                                                                                                                                                                                                                                            500 .?2G $K \006 \027/G, $K \0208> -@!< ,"<> 09> 25#>8A0 >#>#=G
781                                                                                                                                                                                                                                                                                          Old video, but one more foreigner treated harshly by not allowing entrance X His response will make you happy..=%
782                                                                                                                                                                                                                                                                                                                                          Deciphering Sanskrit: An Introduction to Reading Rare Hindu Books
783                                                                                                                                                                                                                                                                                                            #DhimmiHain #DhimmiRahenge #BjpHinduDhimmis #9thClassCitizens #ErasingBharat #ModiHaiToMominHai
784                                                                                                                                                                                                                                                                                                                                                         The Spiritual Significance of Lord Krishna's Flute
785                                                                                                                                                                                                                                                                                                      Jai Shri Krishna =O=O Shri Krishn janmashtami ki aapko bhi hardik badhaiyan aur shubhkamanayen =O=O=O
786                                                                                                                                                                                                                                                                                                                                                                             Krishna Saves Arjun From Indra
787                                                                                                                                                                                                                                                                                                                               Ahmadi doing Tabligh maliciously attacked in Central India by Radical Hindus
788                                                                                                                                                                                                                                                                                                                               Ahmadi doing Tabligh maliciously attacked in Central India by Radical Hindus
789                                                                                                                                                                                                                                                                                           We are Bhartiya. Bharat is our real and indigenous name. Pappu and Pappu's Gang will not be able to do anything.
790                                                                                                                                                                                                                                                                                                                                                                      Timeless Wisdom From Hindu Scriptures
791                                                                                                                                                                                                                                                                                                                         6?5 -\0275>( (G \025?/> %> 2\002\025> \025> (?0M.># =3/ 0>5# (G (9@ # shiv#ramayan
792                                                                                                                                                                                                                                                                                                                                                                                     He is a true patriot W
793                                                                                                                                                                                                                                                                                                                                                                             The Main Purpose of Upanishads
794                                                                                                                                                                                                                                                                                                                                                  The Inhumane Conditions of Dubai's Indian Migrant Workers
795                                                                                                                                                                                                                                                                                                                            Definitely it will give scientific edge to space community. Bharat catching up.
796                                                                                                                                                                                                                                                                                                                               Divine Relationships in the Puranas: Gods, Goddesses, and Their Interactions
797                                                                                                                                                                                                                                                                                                                          Klesh Nashak Mantra || \023. \025C7M#>/ 5>8A&G5>/ 108 ,>0 || Krishna Janmashta...
798                                                                                                                                                                                                                                                                                                                            PM MODI ji has decided Rs 200 reduction In the price of domestic LPG cylinders.
799                                                                                                                                                                                                                                                                                                                                                                                                       =%=©
800                                                                                                                                                                                                                                                                                                                           Navigating Spiritual Insights: Understanding Symbolism in the Hinduism Holy Book
801                                                                                                                                                                                                                                                                       Great liar, deceitful Kejriwal He is stealing all the credit for the work done by the Central Government in Delhi in the G20 Summit.
802                                                                                                                                                                                                                                                                       .A2>/. 8?\0029 />&5 \025@ 9?\002&B\023\002 \025G \026?2>+ \017\025 \0240 \0250$B$ \026K2$> 2K\0252 \025M7G$M0 \025> \017\025 6\026M8
803                                                                                                                                                                                                                                                                                                                                            \006\026?0@ line .G\002 $K Kejriwal \025G '>\027G \026K2 &?\017
804                                                                                                                                                                                                                                                                                                                                Ganesha Idols in Vastu Shastra: Channeling Positive Energies for Your Space
805                                                                                                                                                                                                                                                                                                                                        Nepal is in brink civil war due to the "AdIbAsI community (Jaybim)"
806                                                                                                                                                                                                                                                                                                                            Mahabharata in Art and Culture: Influence on Literature, Dance, and Visual Arts
807                                                                                                                                                                                                                                                                \025H8G 9A\b 0A&M0>\025M7 \025@ \t$M*$? / \025M/K\002 9H 6?5 \025K 0A&M0>\025M7 *8\002& /0A&M0>\025M7 \025@ *A\034> \0250(G \025G 2>- #shiv
808                                                                                                                                                                                                                                                                                                                           Exploring Different Versions of Ramayana: Cultural Diversity and Interpretations
809                                                                                                                                                                                                                                                                                                                                                 Vedic Ethics and Moral Values: Lessons from the Four Vedas
810                                                                                                                                                                                                                                                                                                                                                 Vedic Ethics and Moral Values: Lessons from the Four Vedas
811                                                                                                                                                                                                                                                                                                                                    Journey Through the Upanishads: Understanding the Philosophical Essence
812                                                                                                                                                                                                                                                                                                                                                                                            Jai Shri Ram =©
813                                                                                                                                                                                                                                                                                                                                                 Transformative Learning: How the Bhagavad Gita Can Empower
814                                                                                                                                                                                                                                                                                                                          Nagpanchami Artistry: Exploring Paintings, Sculptures, and Visual Representations
815                                                                                                                                                                                                                                                                                                                                          Nagpanchami: A Journey into Hindu Mythological Stories and Fables
816                                                                                                                                                                                                                                                                                                             \025H8G 9A\006 "\032\002&M0.>" 6?5\034@ \025G 80 *0 5?0>\034.>( #shiva #shiv #mahadev #mahakal
817                                                                                                                                                                                                                                                                                                                                                                        6M0@.& ->\0275$ \027@$> \005'M/>/ h
818                                                                                                                                                                                                                                                                                                                                     Unveiling the Mind: Exploring Philosophy in Hindi Spiritual Literature
819                                                                                                                                                                                                                                                                                                                                             Ramayana's Relevance in Modern Hinduism: Beliefs and Practices
820                                                                                                                                                                                                                                                                                   Tulsi Akhara, where ancient Indian wrestling thrives, offers a glimpse into a lesser-known facet of Varanasi's heritage.
821                                                                                                                                                                                                                                                                                   Tulsi Akhara, where ancient Indian wrestling thrives, offers a glimpse into a lesser-known facet of Varanasi's heritage.
822                                                                                                                                                                                                                                                                                                                                        Lawyers here? Send this guy legal notice for disrespecting Savarkar
823                                                                                                                                                                                                                                                                                                                      The Bhagavad Gita's Perspective on Dharma: Living a Life of Purpose and Righteousness
824                                                                                                                                                                                                                                                         By -\025H8G 9A\b .9>.C$M/A\002\034/ .\002$M0 \025@ \026K\034 ( /9 .\002$M0 \0250G\027> \006*\025G 8>0G 0K\027 \026$M.) #shiva #mahamritunjaymantra
825                                                                                                                                                                                                                                                                                                                        Here's what Navyana-Buddhists don't understand : Buddha was from a Kshatriya family
826                                                                                                                                                                                                                                                                                                                                                                         The Secret of Kamakhya Devi Temple
827                                                                                                                                                                                                                                                                                                                                                          These saints have no knowledge of the scriptures.
828                                                                                                                                                                                                                                                                                          6\002\0250>\032>0M/ \005&M5H$>(?\025? \025M0?\025F\037M \t(M(> 8\002,\002'\002.. | Untold Stories From Hinduism |
829                                                                                                                                                                                                                                                                                                                                                                                               6L0M/ &?58=©
830                                                                                                                                                                                                                                                                                                                                                                                              Rise O Hindu!
831                                                                                                                                                                                                                                                                                                                               6th December Shaurya Diwas - Kar Sewaks demonstrated Islamic Decolonisation.
832                                                                                                                                                                                                                                                                                                                                                             Biggest Status of Lord Shiva for Devotees.....
833                                                                                                                                                                                                                                                                                                                                           Story of Pippalada | Avatars of Shiva | Karthika Masam Special |
834                                                                                                                                                                                                                                                                                                                                                                               Pashupathi Avatar of Shiva |
835                                                                                                                                                                                                                                                                                                                                                  \006\034 \025> $>\034<> \034<\026<M. - 9?\002&B0>7M\037M0
836                                                                                                                                                                                                                                                                                      Yanthindh 5G\037\027>!(@ 0>\034A(A \032G8?( \025' | The story of Yanthindh who became a Hunter &amp; King | Bhaktione
837                                                                                                                                                                                                                                                                                                                                                           Report hinduphobia hinduphobic page on instagram
838                                                                                                                                                                                                                                                                                                                                                  Why should you read Women And Sabarimala By Sinu Joseph ?
839                                                                                                                                                                                                                                                                                        &6.9>5?&M/2A \005\002\037G \017.?\037? ? | Dasha Mahavidya Significance | Untold Stories From Hinduism | #bhaktione
840                                                                                                                                                                                                                                                                                                                                                                       Sanatana Dharma is made for humanity
841                                                                                                                                                                                                                                                                               \025M/K\002 9?\002&B '0M. .G\002 108 \005\002\025 \025@ 9G \a$(@ .9$M5$M$> / \025M/K\002 108 &>(G 9@ 9K$G 9H\002 .>2> .G\002
842                                                                                                                                                                                                                                                                                                                                                                                           Mahabharat story
843                                                                                                                                                                                                                                                                                                                                                                                                 Ram mandir
844                                                                                                                                                                                                                                                                                                                                                                                            Har har mahadev
845                                                                                                                                                                                                                                                                                                                                                                                                    Exposed
846                                                                                                                                                                                                                                                                                                                                                                                                    Exposed
847                                                                                                                                                                                                                                                                                                                                                                                                 Ram mandir
848                                                                                                                                                                                                                                                                                                                                                                                                       1971
849                                                                                                                                                                                                                                                                                                           Kyu India k har pe Bangladeshi mana rha jasn? Janiye Bangladesh ka anti Indian sentiment ka Raaz
850                                                                                                                                                                                                                                                                                                                                                                              Frustration's Real..... =\034
851                                                                                                                                                                                                                                                                                                                                           Kashi football club v/s Mohammedan football club. Jai Mahakaal!!
852                                                                                                                                                                                                                                                                                                                                                                                                Jao haumana
853                                                                                                                                                                                                                                                                                                                                                                                               Ram siya ram
854                                                                                                                                                                                                                                                                                                                                                                          Top 5 Mysterious Temples Of India
855                                                                                                                                                                                                                                                                                                                                                             Dev Deepawali: Celebrating Bhakti with Bhagwan
856                                                                                                                                                                                                                                                                                                                                                                          Krishna protects all his Devotees
857                                                                                                                                                                                                                                                                                                                                                                                     Appeal to all Bhartiya
858                                                                                                                                                                                                                                                                                         \a( *>*K\002 \025K (9@\002 \0250$G -\0275>( 6?5 .>+ &G$G 9H\002 \025 K0 &#M! =/ / (\002,0 -4 \0340B0 &G\026G #shiv
859                                                                                                                                                                                                                                                                                                                                                                         Revisiting Decolonisation of India
860                                                                                                                                                                                                                                                                                                                                                              Peaceful and Tolerant Community Strikes again
861                                                                                                                                                                                                                                                                                                                      Astrologer Mukesh Vats Prediction Bhavishay Malika and Mahabharat part 2 Hindu Rastra
862                                                                                                                                                                                                                                                                                                                                                                                     HOW DID OM ORIGINATE ?
863                                                                                                                                                                                                                                                                                                \025H8G 9A\b 6?52?\002\027 \025@ \t$M*$M$? =3/\025M/K\002 \032"<>/> \034>$> 9H 6?52?\002\027 *0 \0342 #shiv
864                                                                                                                                                                                                                                                                                                         The Blue Part is only 1 non-Islamic country in the whole Arab world and they can't even digest it.
865                                                                                                                                                                                                                                                                                                                               Balancing Energies: Where to Position Your Lakshmi Statue for Positive Vibes
866                                                                                                                                                                                                                                                                                                                                  Enhance Your Prosperity: How Worshipping Lord Ganesha Can Bring Abundance
867                                                                                                                                                                                                                                                                                                                           A solution to unite all Hindus, Sanatanis &amp; all people who care about Bharat
868                                                                                                                                                                                                                                                                                90 0K\034 " P (.\003 6?5>/ " \025G \034>* 8G \006*\025G \034@5( .G\002 \025M/> *M0->5 *!<$> 9H #omnamahshivaya #shivsandesh
869                                                                                                                                                                                                                                                                                                                                                                                                 [General] 
870                                                                                                                                                                                                                                                                                                                                                  No wonder Modi want to remove Muslims from History books.
871                                                                                                                                                                                                                                                                                                                                                                      Becoming Vedic Sanatani from Exmuslim
872                                                                                                                                                                                                                                                                                                                                              How to Become Vedic Santani Dharma Yoddha : Yati Narsinganand
873                                                                                                                                                                                                                                                                                                                                                                 Problems and its solutions #hanumanchalisa
874                                                                                                                                                                                                                                                           .9>->0$ \027M0\002% \025G \005(A8>0 \026>(> \026>(G \025G (?/. / \025M/K\002 *$? *$M(? \025K \017\025 %>2@ .G\002 \026>(> (9@\002 \032>9?\017 =/
875                                                                                                                                                                                                                                                                                                                                 80M56M0G7M ! /K&M'> \0250M# | The best! warrior karna #shorts #mahabharata
876                                                                                                                                                                                                                                                                                                                                                      80M56M0G7M ! /K&M'> \0250M# | The best! warrior karna
877                                                                                                                                                                                                                                                                                                                                                                        Dailty Hindu Quotes App - Sansearch
878                                                                                                                                                                                                                                                                                                                                            [WIN your Inner Battles] with this Musical Bhagavad Gita - Ch 1
879                                                                                                                                                                                                                                                                 -\0275>( 6?5 (G ,$>\b %@ \0252/A\027 8G \034A!<@ *>\002\032 ,!<@ ,>$G / \034?8G \034>(\0250 \006*\025> \034@5( 8+2 9K \034>\017\027> #shiv
880                                                                                                                                                                                                                                                                                                                                                                    Bhagwan Shiva foretells Ravana's demise
881                                                                                                                                                                                                                                                                                                                                                             The 24 Tattvas of Creation in Samkhya Darshana
882                                                                                                                                                                                                                                                                                                                                                                  Hinduism - The Role of Shakti in Creation
883                                                                                                                                                                                                                                                                                                                                                                                   Navratri Aura (Part - 2)
884                                                                                                                                                                                                                                                                                                                                                              The most Spiritual Temple of Lord Shiva......
885                                                                                                                                                                                                                                                                                                                                                                                    Nine Forms of Maa Durga
886                                                                                                                                                                                                                                                                                                                                                               Happy Navratri to All......Jai Mata Di......
887                                                                                                                                                                                                                                                                                                                                                                           Do you agree with Geeta Lessons?
888                                                                                                                                                                                                           Jai Shree Ram Tattoo in 3D (Do Not Copy) by One of India's Top Tattoo Artist in Bangalore - Veer Hegde at Eternal Expression - Get your unique custom Jai Shree Ram Tattoo at Eternal Expression
889                                                                                                                                                                                                                                                                                                                                                  How does this have anything to do with Hindus or Hinduism
890                                                                                                                                                                                                                                                                                                                                                                The necessity to believe in someone supreme
891                                                                                                                                                                                                                                                                                                                                                            How the Upanishads Were Introduced to the World
892                                                                                                                                                                                                                                                                                                                                                                  Learn Bharat's civilisation through comic
893                                                                                                                                                                                                                                                                                                                                                 The Gayatri Mantra Demystified: Your Path to Inner Harmony
894                                                                                                                                                                                                                                                                                                                                         Unlocking Ancient Wisdom: The Fascinating World of Sanskrit Novels
895                                                                          '0M. $K &A(?/> .G\002 \017\025 9@ 9H 59 9H 8(>$( '0M. =I\017=© 8(>$( '0M. 6>6M5$ 5 5H\034M\036>(?\025 5?\032>0'>0> *0 \006'>0?$ 9H \025M/K\002\025? \034K \006\034\0252 5H\034M\036>(?\025 \026K\034 09G 9H\002 /> \006\027G \034K -5?7M/ .G\002 \026K\034G\002\027G 59 9.>0G 6>8M$M0K\002 .G\002 *92G 8G 50M#?$ 5 8M*7M\037 9H ó
896                                                                                                                                                                                                                                                               10 instances in India where islamic structures were allegedly built over Hindu Temples. 1. Ram Janmabhoomi Temple, Ayodhya - Babri Structure
897                                                                                                                                                                                                                                                                                                                                             CHINA pumps 10,000 CRORES Into Indian Companies To Destroy us!
898                                                                                                                                                                                                                                                                                                                                      Made a video about our HISTORY, Mahabharat as told by Rishi Ved Vyas.
899                                                                                                                                                                                                                                                                                                                            \034->!< .G\002 \034>/G ->\b\032>0>, .H\002 $K \025G52 8$M/ \0259B\001\027@\035
900                                                                                                                                                                                                                                                                                                                                           The Unsung Vedas: Discovering Lesser-Explored Ancient Scriptures
901                                                                                                                                                                                                                                                                                                                               Can India/Bharat really progress and be developed without Judicial Reforms!?
902                                                                                                                                                                                                                                                                                                                                                                        Our Country Our Responsibility <î<ó
903                                                                                                                                                                                                                                                                                                                                                                  Bajrang Baan | Hanuman Bhajan with Lyrics
904                                                                                                                                                                                                                                                                                                                                              Gand hi inflicted psychological violence on Hindus of Bharat.
905                                                                                                                                                                                                                                                                                                                                                                                                       =O=O
906                                                                                                                                                                                                                                                                                                                                                             Problems with the recent caste census in Bihar
907                                                                                                                                                                                                                                                                                                                                                                                      Aspects of Lord Shiva
908                                                                                                                      Today is 2nd October and today is Jayanti of Lal Bahadur Shastri one of the greatest prime minister under his leadership we won battle of 1965 and he was promoter of \034Green Revolution" In the country and gave the slogan of \034Jai Jawan Jai Kisaan". Jai Hind Jai Bharat <î<ó
909                                                                                                                                                                                                                                                                                                                                                                            The divine lights of Sanatan =©
910                                                                                                                                                                                                                                                                                                                                                                                       8-@ \025K ,'>\b <î<ó
911                                                                                                                                                                                                                                                                                                                      The Original Lyrics of Raghupati Raghav Raja Ram before its secularisation by Gandhi.
912                                                                                                                                                                                                                                                                                                                                                                                      The Three Mistakes !!
913                                                                                                                                                                                                                                                                                                                      Did you ever think why there is not a single big ancient temple left in North India ?
914                                                                                                                                                                                                                   What are hindutva and hindu rasthra? What do you guys want to accomplish exactly ? Do you think bjp is hindu enough as a party ? Do you support abolishing the caste system completely ?
915                                                                                              \034K ->\b\032>0G \025@ ,>$ \0250$G 9H \t(M9G\002 *$> 9K(> \032>9?\017 ''0>. .(M&?0 \025K\b \026H0>$ .G\002 (9@\002 .?2> 9H, \a8\025G 2?\017 2\002,> 8\002\0300M7 \0250(> *!<> 9H..'' \025\b \025>0 8G5\025K\002 \025K \005*(@ \034>( \027\0025>(@ *!<@ 9H \034, \034>\0250 .\002&?0 ,( 09> 9H \034/ 6M0@ 0>.
916                                                                                                                                                                                                                                                                                                                                                                                    Jai Hind Mitron=O<î<ó=È
917                                                                                                                                                                                                                                                                                                                        Whether human or animal, true bhakti is all that's needed to be close to Bhagwan.=©
918                                                                                                                                                                                                                               Did you know? 12 year old Bhagat Singh visited Jallianwala Bagh on the next day of the massacre, collected blood soaked soil, kept it at his home and vowed to take revenge.
919                                                                                                                                                                                                                                                                                                                                                        Ones who abuse Sanatan Dharma deserve this place =%
920                                                                                                                                                                                                                                                                                       Ambulance given way during Ganapati Celebrations in Pune. Ganapati Bappa Mourya =% Well done Sanatani Punekars d\017
921                                                                                                                                                                                                                                                                                                                                                                   Powerful Sun Mantra Music | Surya Mantra
922                                                                                                                Sanatana Dharma is full of respect, compassion, motivation &amp; inclusiveness. Sanatana Dharma is the way of life. Which believes in Vasudhaiva Kutumbakam. If anyone wants to destroy it, they have to destroy humanity. Bfr tht they will get destroyed themselves. Jayatu Sanatana =O=©
923                                                                                                                                                                                                                                                                                                                                          Ganesh Chaturthi Celebrations in USA d\017 Ganpati Bappa Morya =O
924                                                                                                                                                                                                                                                                                                                                                    The Culmination of a 500 years long Fight for Dharma =%
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                text
1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If you had to name one thing that you believe puts Hindutva under threat, what would that be?
12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Himalayan Academy provides this guide for non-Hindus to become Hindu: [https://www.himalayanacademy.com/view/how-to-become-a-hindu](https://www.himalayanacademy.com/view/how-to-become-a-hindu).\n\nIt lays out six steps: 1) joining a Hindu community; 2) creating a point-counterpoint of the beliefs of Hinduism and one's previous religion; 3) severing from former mentors; 4) legally adopting a Hindu name; 5) having a namakarana samskara, the traditional Hindu name-giving ceremony and 6) publicly announcing the severance and name change.\n\nAdditionally, I found an article of a man who followed such guidance and discusses in specific the namkaran implications:\n\n[https://www.hinduismtoday.com/magazine/apr-may-jun-2021/whats-your-real-name/](https://www.hinduismtoday.com/magazine/apr-may-jun-2021/whats-your-real-name/)\n\nI wanted to know your opinions of the Himalayan Academy's methods. I think it is good to support those who are curious in becoming Hindu by doing so properly and respectfully. I think having these steps deters laypersons who may only want to go by the label of Hindu for clout and what not. Is this method of 'conversion' something we, the broader Hindu community, should support?\n\nMay be important to add that the Himalayan Academy supports only non-forced conversions.
14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "Convert, die or leave!" \n32 years today that threat by Islamists hit #KashmiriHindus like a tsunami.\nAbduction, gangrape &amp; murder became commonplace till their genocide &amp; exodus from Kashmir was complete.\nLook it up, read about it, stand by this community for Justice=O<û Never Forget Never Forgive! =©=I
19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   [Major subreddit that has connections to reddit admins](https://www.reddit.com/r/neoliberal/comments/s1erqi/reddit_allows_hate_speech_to_flourish_in_its/) spreading fake news and calling for DesiMeta and Chodi to be banned.
25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Namaste to all the hindutvaadis,\n\n\nFace it or not, this has been a tough period for us. Kanhaiya Lal's case lead me to severe sadness, while our subreddits were heavily attacked by these Bullas, but I believe we are going strong.\n\nRecently, I have been observing the bullas who have been masquerading among us lurking in our group, and I did the same. For the past 1 month, I have been observing that these Bullas are clutching to everything they can to hold their stupid ideology.\n\n\nSee these posts below:\n\nhttps://www.reddit.com/r/EXHINDU/comments/vly4aa/journalist_mohammed_zubair_of_altnews_arrested/?utm_medium=android_app&amp;utm_source=share\n\nhttps://www.reddit.com/r/EXHINDU/comments/rk1rzf/regarding_kaaba_in_islam/?utm_medium=android_app&amp;utm_source=share\n\nhttps://www.reddit.com/r/EXHINDU/comments/vmk7hl/the_sanghs_dream_of_a_hindu_rashtra_is_not_even/?utm_medium=android_app&amp;utm_source=share\n\nhttps://www.reddit.com/r/EXHINDU/comments/vj4m5b/why_did_you_leave_hinduism/?utm_medium=android_app&amp;utm_source=share\n\n\nThese guys have been trying hard to defame us, defame our religion, but they haven't been able to.\n\nAll I want to express is that we should stay true to our roots, and trust lord Krishna ji and lord Ram ji into giving us mental strength to be able to face any problems with braveness and good response.\n\nJai ho.
28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Dharmayudh ](https://dharmayudh.com/), a website made by me and my friend on Hindu millitary history has completed 2 years. Have posted articles on Marathas, Rajputs, Sikhs and every other small and big group and their history of bravery and sacrifice that has been not given importance in secular democratic India.\n\nIt was hard in the beginning but now We receive almost 500 organic daily visitors and have a small following on instagram too( 1900).\n\nWould mean a lot if you can support us by any means , donations of any small amount from the link in website are welcomed by Only those who can afford it . Rest can do the following things:\n\nTurn on notifications for the website on your browser ( by clicking allow on the pop-up when it comes when you visit the website)\n\nFollow us on instagram ( dharmayudh\\_com)\n\nShare our website and instagram in your WhatsApp groups etc.\n\nJai Bhavani !
30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1) Believe in God ! - Aastik - Accepted\n\n&amp;#x200B;\n\n2) Don't believe in God ! - You're accepted as Nastik\n\n&amp;#x200B;\n\n3) You want to worship idols - please go ahead. You are a murti pujak(idol worship)\n\n&amp;#x200B;\n\n4) You dont want to worship idols- no problem u can focus on Nirguna Brahman.\n\n&amp;#x200B;\n\n5) You want to criticise something in our religion. Come forward. We are logical. Nyaya, Tarka etc are core Hindu schools\n\n&amp;#x200B;\n\n6) You want to accept beliefs as it is. Most welcome. Please go ahead with it.\n\n&amp;#x200B;\n\n7) You want to start your journey by reading "Bhagvad Gita"- Sure !\n\n&amp;#x200B;\n\n8) You want to start your journey by reading "Upanishads" - Go ahead\n\n&amp;#x200B;\n\n9) You want to start your journey by reading "Purana"- Be my guest.\n\n&amp;#x200B;\n\n10) You just don't like reading Puranas or other books. No problem my dear. Go by Bhakti(devotion) tradition.\n\n&amp;#x200B;\n\n11) You don't like idea of Bhakti(devotion) ! No problem. Do your Karma(moral duty) Be a karmayogi.\n\n&amp;#x200B;\n\n12) You want to enjoy life. Very good. No problem at all. This is Charvaka Philosophy.\n\n&amp;#x200B;\n\n13) You want to abstain from all the enjoyment of life &amp; find God - let's go ! Be a Sadhu, an ascetic !\n\n&amp;#x200B;\n\n14) You don't like the concept of God. You believe in Nature only - Welcome. (Trees are our friends and Prakriti or nature is worthy of worship).\n\n&amp;#x200B;\n\n15) You believe in one God or Supreme Energy. Superb! Follow Advaita philosophy\n\n&amp;#x200B;\n\n16) You want a Guru. Go ahead. Receive gyaan(knowledge).\n\n&amp;#x200B;\n\n17) You don't want a Guru.. Help yourself ! Meditate, Study !\n\n&amp;#x200B;\n\n18) You believe in Female energy ! Shakti is worshipped.\n\n&amp;#x200B;\n\n19) You believe that every human being is equal. Yeah! You're awesome, come on let's celebrate Hinduism! "Vasudhaiva kutumbakam" (the world is a family)\n\n&amp;#x200B;\n\n20) You don't have time to celebrate the festival.\n\n&amp;#x200B;\n\nDon't worry. One more festival is coming! There are multiple festivals every single day of the year.\n\n&amp;#x200B;\n\n21) You are a working person. Don't have time for religion. Its okay. You will still be a Hindu.\n\n&amp;#x200B;\n\n22) You like to go to temples. Devotion is loved.\n\n&amp;#x200B;\n\n23) You don't like to go to temples - no problem. You are still a Hindu!\n\n&amp;#x200B;\n\n24) You know that Hinduism is a way of life, with considerable freedom.\n\n&amp;#x200B;\n\n25) You believe that everything has God in it. So you worship your mother, father, guru, tree, River, Prani-matra, Earth, Universe!\n\n&amp;#x200B;\n\n26) And If you don't believe that everything has GOD in it - No problems. Respect your viewpoint.\n\n&amp;#x200B;\n\n27) "Sarve jana sukhino bhavantu " (May you all live happily)\n\n&amp;#x200B;\n\nThis is exactly the essence of Hinduism, all inclusive .. That is why it has withstood the test of time inspite of repeated onslaught both from within and outside, and assimilated every good aspects from everything . That is why it is eternal !!!. \n\n&amp;#x200B;\n\n"Ano bhadrah Krathavo Yanthu Vishwathah" Let the knowledge come to us from every direction.
32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hi to all of the community,\n\n\nRecently due to mods sleeping, we saw few miscreants like u/Kareba1614, who have been using devilish tantric interpretations of sacred texts, sharing unfunny pictures for his own sadistic pleasure of defaming our religion. \n\n\nHere's one of his latest posts: \n\nhttps://www.reddit.com/r/EXHINDU/comments/vkp1sf/taking_full_advantage_of_his_long_trunk/?utm_medium=android_app&amp;utm_source=share\n\n\nNow for people who may not know, this is Uchchhishta Ganapati. This Ganapati is used by vamachara people, people who go opposite the vedic practices, which in short mean that only tantrics and devils worship this Ganapati. \n\nThis worship of Tantric based Ganapati is only used by tantrics to bless a couple for a kid.\n\n\nNow I know that this may sound ridiculous, but sons of Kauravas live among us, yes that's right, the bulla community. And one of the main flag bearers of this is u/Kareba1614. In his 24 days of rubbish posting, he's been trying to defame Hinduism by either of the following:\n\n1. Using his Baulvi interpreted sacred texts to defame Hinduism\n2. Using the devilish ideology and bringing it on display in name of Hinduism \n3. Using a fuckall subreddit of exBindu to generate hate within uneducated population\n\n\nThis half cut dick guy got his ass kicked in his starting days, and is smartly deleting all the texts where he got his ass kicked.\n\nLord Krishna stated that "Person who goes to others house to generate hate based on wrong information even in name of gossip deserves the worst of hell ", and frankly speaking, u/Kareba1614 is a 11th standard kid who's been given this direction by his family.\n\nMODERATORS, ARE YOU STILL SLEEPING?
42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hi and Namaste!\n\nI have created a new subreddit called r/ABCIndianHindus for Hindus born and raised Overseas or living abroad to be more of a space where people can more openly talk about Hindu focused topics that are discouraged in other subreddits as well as being a Hindu outside of India and being born and raised Hindu outside of India like the United States! Come check it out!
43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This reddit is so out of touch with what is going on in this platform. Dear Mods and Admins, and members of this subreddit, just by naming your subreddit as Hindutva rises doesn't mean you are helping in any way to contribute towards this movement. \n\nIf you guys just want to make memes and show clips of videos then might as well close this down and post those things on r\\bakchodi or whatever other platforms made for such contents.\n\nThere are tonnes of anti hindu and anti hindutva content floating around other subreddits, and there no reply from anyone, was expecting something to counter from this subreddit but no.\n\nI guess y'all just want to enjoy and retweet or repost stuff. Can't say I'm buying into your movement.
54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Articles like this which prove that Christianity is already significant and hiding in the shadows in states like Andhra show that Hindus will continue to decrease in numbers for the foreseeable future which is scary for me as I am a Hindu Telegu person myself. \n\n [Andhra Pradesh is 25% Christian now, thanks to late YSR Reddy (hindupost.in)](https://hindupost.in/dharma-religion/andhra-pradesh-is-25-christian-now/#:~:text=A%20recent%20TV%20interview%20of%20sitting%20YSRCP%20MP,as%20well%20as%20the%20fraud%20in%20census%20data.) \n\nEven Hindutva content creators have pointed out that Hinduism is on the way out and that by the end of the century it will be nearly dead. \n\n [Hinduism will be finished in another century, columnist Abhijit Iyer Mitra predicts. Read why he thinks so - hindusoftheworld](https://hindusoftheworld.com/hinduism-will-be-finished-in-another-century/) \n\n [Is Hinduism Too Tolerant? Is It Doomed? - YouTube](https://www.youtube.com/watch?v=z8rZtHGOpoU) \n\nThe only real way we can save Sanatana Dharma is by violence or force, just like how Pakistan made their population of 20% Hindu to nearly nonexistent as well as banning of foreign NGOs and a new pro Hindu constitution which bans Islam and Xtianity but these would be considered extreme and would require a coup of the current government to achieve and thus it will not happen nor do I think Hindus would advocate for this. \n\nThe problem lies with what happens when we become a minority, the transition will not be peaceful as history shows us. Our temples will be destroyed and Hindus will be hunted, forcibly converted, or killed just as history shows us. We are going down the path of the Zoroastrians where enough of their numbers have been killed off to the point where they now face a demographics collapse and will die a slow and painful death while watching everything they built crumble into dust. I don't want to make this mistake so we need a plan B ASAP if Hindutva fails to protect Hinduism and Hindus in India. \n\nI suggest we become a missionary faith, and not like ISKCON but more like the Catholic Church which forces discipline in its members and starts converting non Indians into Hindus so that our religion stays alive outside of India, not only that but we need to find outer countries where Hindus can run to when the killings start. When the Russian Ukraine war broke out Ukrainian Jews got on a plane and went to Israel for safety. The Zoroastrians, Tibetans, Jews, etc all ran to India when they didn't have a country from themselves and some even created countries like Israel to protect themselves, but in an ironic twist we Hindus have nowhere to go which is why we need to find another place where we can build another Hindu country to take in Hindus when India falls. \n\nIf this information scares you it should because we may have already lost the numbers game needed to turn India into a Hindu nation. If you guys are already reconverting people back to Hinduism then great but I fear it might not be enough. Thoughts?
55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What are your thoughts about caste system in 21st century?
57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         &amp;#x200B;\n\nhttps://reddit.com/link/v409gs/video/c1i4h9lwye391/player
60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It's impossible to teach them to be in the middle. If you want Hinduism to live, you need to show pride, not just obedience. And if you're still a kid, teach your friends Hinduism AND Hindutva.
63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lol,\n\nr/ExMuslim has over 21 times more people than r/EXHINDU\n\nr/ExChristian has over 19 times more people than r/EXHINDU\n\n&amp;#x200B;\n\nIt's because the goal of our Dharma is to help people and to reduce suffering, not to conform people into a code that is wrong.
68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Plz, give reasons that are logical and valid.
74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I'm extremely Hindutva, but it looks to me like Modi has gotten a bit lazy.\n\n1. He still hasn't freed the temples after 8 years! I could've done better!\n2. The Muslims are still allowed to do azaan loudly with speakers\n3. UCC hasn't been passed.\n4. The Hindu Rashtra hasn't been made! And it looks like Modi isn't going to make it. We're going to continue to live in the sickular hellhole.\n\nModi needs to ramp up his game. Unless we see the UCC and other HUGE developments, large amounts of the Hindutva Right are not going to vote for him. We need a new leader.
77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SURAH CH 4 VERSE 74 --- the Allah will provide anyone mighty rewards who fights for Allah...even he is put to death or become victorious ( a major tool for  altruistic suicide like suicide bombing ) \n\nAL TAWBA CH 9 VERSE 29 ---- Kill (it is not fight bcoz when u see Arabic version there is "quatil" ) or take jiziya from anyone who don't belive in Allah or the Last day or the things which are considered unlawfu and who do not adopt religion of truth from those who were given the scripture.\n\nSURAH LUQMAN AYAT CH 31 VERSE 6 --- and of the people is he who buys the amusement of speech to mislead [others] from the way of Allah without knowledge and who takes it in ridicule. Those will have a humiliating punishment.( unlike hindhu sameness that is there is different path but all lead to same place ) \n\nSURAH AL KAHF CH 18 VERSE 86 --- until he reached the setting ùpointú of the sun, which appeared to him to be setting in a spring of murky water, where he found some people. We said, \034O kul-Qarnain! Either punish them or treat them kindly. ( THE SUN GET BURIED INTO WATER AND FUTHER MORE THE QARNAIN CAN DO ANYTHING WITH PPL EITHER PUNISH THEM OR KINDLY TREAT THEM....WHERE IS JUSTICE ) \n\nPS : IF THERE IS GOOD RESPONSE  I AM GOING TO POST MORE VERSES \nAND MOREOVER I AM READY FOR GOOD DISCUSSION AND ANY OTHER INTERPRETATION
82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Why do Hindutva supporters and the BJP push Hindi as the national language. It is only native to one region of India, it is not the indigenous language to the subcontinent either. It is actually pretty new and comes from the same family as Urdu. It is not indigenous to the entire continent, our Vedic ancestors did not even speak Hindi. So why force that as the main official language. India can be a multi-lingual state and that's what makes it unique. Also most of the world and even the Indian diaspora speak English, so that can be used to connect communities. Also English would never be accepted as a main local language when other languages and promoted.
83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BJP is the last hope.\n\nBJP is not equals congress. BJP may have Sushil Modi, Khattar, Fadnavis etc but it also has Yogi, Himanta and Biplab. I Know Pattahrbazi has happened in Bjp states also. but now think about the result all those would be punished silently without any news. Just like you can see how leftist triggered CM of MP. The punishment needs to be given silently.\n\nSO stop saying remove BJP\n\nBJP has developed ignored temple corridors, Kedarnath Ayodhya and Kashi. The PM is unashamed to attend pooja at Haridwar, at Kedarnath or laying first stone for Ram Mandir. The ambit of Hindus have now increased and even though Government may seem to be in inaction, the public morale has risen. The boycott of FabIndia, cracker bursting against ban orders during Diwali, the Gurugram citizens doing havan to oppose Public namaz, the debate on Halal economy, the demand to free temples, the demand to amend NCERT, cancelling of shows of Munawar Faruqi for Godhra jokes & the awareness has increased a lot and we have become more assertive. This kind of discourse wouldn\031t have happened 7 years ago. You wouldn\031t even know how much damage halal economy was doing, how much exploitations temples face, how biased our NCERT books were&
96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \n\n\n\nI think the government should get a policy out saying,  if there are more than 2 children , the family won't be getting any benefits from the government. \n\n If you can't provide proper food for yourself,  and you go marry 2 , 3 women make 10,20 children and live off the government funds , most of which are the taxes paid by billion of people . \n\nWho so ever has a more kids and multiple wife's they should be barred from all government provided ration , education , scholarship, medical care .. everything.  \n\n\nHum do , hamare do .(our government can easily support this ) \n\nIf you decide to have more it's ur choice , but the government isn't going to provide for them .\nAll our taxes are being used by them ,\nThey  can't afford eat , have no good education , all they do is marry 2,3 and make 10-15 kids  living in a room which they call a home , they don't have money to buy cloths lekin government should help them , government should pay fir their ration , government should pay for their education,  government is responsible for their health . \n\nWe all Indians pay shit load of taxes thinking that it would be for the welfare of the country  . \n\nBut these people bleed our government money , from food to hospital,  everything is given by the government. \n\n\nThey eat , study , live with our funding and say  Ola Hu Uber.
98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Clearing karma is a very important tool, when on the spiritual path. Learn about its origins, meanings, and practices in order to help uplift and hold your own dharma.  I've spent a lot of time clearing karma, personally, and thought I should make a blog post about my findings of it, and also share my own personal practices with clearing karmic energy, and uplifting my dharma. Click the link below to read all about it!\n\n[https://lermadaniel962.wixsite.com/website/post/karma](https://lermadaniel962.wixsite.com/website/post/karma)
103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hello everyone I am hosting a mata ki chowki on discord  on the occasion of Navratri and we need singers for that \nIt would be great if any good singer can participate&.\nPls Message if someone wants to \nJAI MATA DI
110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Guys we should make a hindutva logo in r/place near the indian flag
113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Keep hearing both of these terms but they are not interchangeable. \n\nInn dono ke beech difference kya hai in terms of geopolitics and/or culture?
115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Your answer can be across domains.\n\nPersonally, I'd recommend the introduction of 2 changes-\n\n1. Permanent ban system against any anti-India and anti-Hindu content across platforms. If any platform is found peddling these, they are given one warning before being banned permanently.\n\n2. UCC and NRC implementation
117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Namaskar,\n\nI hail from a small town in West Bengal (haan Bhai pata hai Gunda raaj wala). As a kid, I was told to always respect other religions and cultures, but was never taught the value of mutual respect. It was so bad, that the local gundas (of a certain peaceful variety) would openly harass everyone and you couldn't bat an eye.\n\nFast forward to 2022 and aaj din badal gaya hai. People in small towns are leading the crusade of Hindu pride and embracing Hindutva. The local RSS shakha is filled to capacity. New mandirs have popped up and areas that were once captured by others are being reclaimed by Hindus.\n\nAkhand Bharat aa raha hai and I can assure you, small town folks will be the frontline warriors if given the opportunity
119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What do most Hindu Nationalists think about the Indians that fought for UK during World War 2? Or was it a mistake?\n\n[https://en.wikipedia.org/wiki/Indian\\_Army\\_during\\_World\\_War\\_II](https://en.wikipedia.org/wiki/Indian_Army_during_World_War_II)\n\nThey fought against Germany and other Axis Powers.\n\nDo most Hindu Nationalists support Bose and Indian National Army?\n\n[https://translate.google.com/](https://translate.google.com/)
126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do Hindu Nationalists view China as an ally?\n\nI know that India and China are in BRICS. Don't most Chinese dislike India? \n\n[https://i.redd.it/xd6uxmesgf291.png](https://i.redd.it/xd6uxmesgf291.png)
127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What do you guys think?\n\nI am not at all fond of democracy and I despise it, I do however like some elements of it. Thats why I propose a sort of Democratical Monarchy Administration, similar to that of the Gupta Age. I would like to know your opinions on democracy
132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Other than subhas chandra bose  and bhagat singh, who are others admired by Hindu Nationalists?\n\n[https://translate.google.com/](https://translate.google.com/)
133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is from a tamil hindu living in Tamil nadu, the assembly today have decide to restart sethusamuthram project and put a hole on ramsetu\n\nThey have stated that economy cannot be pushed away for superstitions and wrong beliefs, and worse part is even the opposition party ADMK has given in\n\nThe unbelievable part is BJP has given green light for the project, i don't know what to do i am literally crying, All these sufferings all these attacks on our beliefs, what pap have we done to be born as a HINDU \n\nLink: https://www.ndtv.com/tamil-nadu-news/bjps-u-turn-backs-mk-stalin-over-sethusamudram-project-with-condition-3685968
140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Because there is God in Godse and Gand in Gandhi
145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               *Gora validation to break "liberal" coloniality of Indians*:\n\n* Louis CK is not raising his kids religiously, however he teaches them about religion. [**He tells his kids that there are many religions in the world, and they\031re all equal**](https://youtu.be/VFMuOR4TmrA). But the Christians are the ones who won.\n\n*Scientific validation to break "secular" coloniality of Bharatiyas*:\n\n* The Christian {Gregorian} calendar is a thoroughly unscientific calendar. This calendar, which propagates superstition and historical untruth, is the only calendar that most Western educated people learn. [**The Western educated elite in India rarely know much about the traditional Indian calendar and they regard the Christian calendar as secular and universal**](https://youtu.be/xUpuerFe5A8)!\nThe traditional Indian calendar is an accurate and scientific calendar, which avoids superstition and historical untruths. In India, agricultural success required a good calendar which could tell the monsoons accurately. The Indian calendar has a concept of the rainy months of Sawan and Bhadon, known to every Indian child through the culture. This calendar should, therefore, have been adopted after independence. [**If science is not mindless belief in the West, the traditional Indian calendar must continue to be used till one has a demonstrably better theory of the monsoons**](https://youtu.be/vdL5U1apb3o). This would probably save the lives of millions of Indian farmers.\n\n*Spiritual validation to break "religious" coloniality of Hindus*:\n\n* [**What Is Wrong With Modern Calendar? British Destroyed Bharat With Sunday As A Holiday**](https://youtu.be/MvpuC7Dg4e0). \nIf one is seeking exuberance of activity, if one is seeking relationship around thy self, if one is seeking success in the world, or if the goals of one's life are transcendent in nature, and one wants to go beyond all these material experiences then one would craft their sadhana around Hindu {Lunar-Solar} calendar not Gregorian {Western} calendar.\n\nJai Sita-Ram \n\n=\002=O=I\017\n\n&gt;!*[Indians are emotional &amp; easily swayed](https://youtube.com/shorts/W5rRoSLGKoY); [need to become intellectual Kshatriyas](https://youtu.be/pM5VgE8OxxQ)*!.
148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I don\031t understand what does the hindutva movement actually seek to do about Muslim? It feels like u guys just do a riot twice a year and then no actual structural reforms ever occur
154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do Hindu Nationalists support a common, official language?\n\nHello. I have a question. Which language would that be? Sanskrit? \n\nAren't there many languages in India?  \n\n[https://translate.google.com/](https://translate.google.com/)
158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the Hindu tradition, the sunrise is also associated with the deity Surya, who is revered as the god of the sun. Surya is seen as a source of light and life, and is revered for his ability to bring warmth and nourishment to the earth.
162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What are contemporary Hindutva views on Vedic animal sacrifice and eating beef?\n\nHistorians seem to be in consensus that even eating beef was widespread in ancient India.\n\nI understand things change. I understand what I\031m asking might be controversial. I\031m not interested in a debate about the extent or prevalence of eating beef or animal sacrifice in history. I\031m interested in contemporary explanations of why Hindu practices changed since the Vedas. Why aren't those practiced anymore? How do Hindu scholars/politicians explain the changes in Hindu practice over time? The RSS and the BJP must have some sort of view on the differences between ancient Hindu practices and texts and the way it's practiced now. \n\nI'm an American and my research is about urbanization in India. I know a good deal about India but not this part of Indian religion and culture. I'm just genuinely interested and I don't mean any disrespect to contemporary Hindu views.
174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So recently I have hovered over this [post](https://www.reddit.com/r/BAMEVoicesUK/comments/xk9kqh/5512_percent_of_antimuslim_hate_content_on/) and if you kindly read my sub- comments there in the first comment you can see that what I have said there is completely true and I posted there with a polite tone. Yet that guy said to me I am fap addict, still I maintained my polite behaviour. But those moderators banned me from their subreddit (idgaf). Then I send something to those moderators of those subreddits and in reply reddit officials replied to me that I am spreading hate and my account will be suspended. How long we Hindus shall be dominated by these people? Why do we have to always obey by their ways of thinking. =!=!
175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hi folks I am a youtuber and I make vedio related to science&amp;Education I am planing to make a vedio on our national anthem 'Janna Ganna Manna '  about it's history \nSome facts and much more so the thing is I want some questions and idea related to this topic would you mind giving me some Deed related to this topic \n\n\n\n9?(M&@\n(.8M$G &K8M$K\002 .H\002 \017\025 /B\037M/B,0 9B\002 \0240 .H\002 5?\034M\036>( \0240 6?\025M7> 8G 8\002,\002'?$ vedio ,(>$> 9B\002 ,.H\002 \005*(G 0>7M\037M0\027>( '\034(M(> \027(M(> .(M(>'  \a8\025G \a$?9>8 \025G ,>0G .G\002 \017\025 vedio ,(>(G \025@ /K\034(> ,(> 09> 9B\002 ,\025A\033 $%M/ \0240 -@ ,9A$ \025A\033 $K ,>$ /9 9H \025? .A\035G \a8 5?7/ 8G 8\002,\002'?$ \025A\033 *M06M( \0240 5?\032>0 \032>9?\017, \025M/> \006* .A\035G \025A\033 5?2G\026 &G(> \032>9G\002\027G? \a8 5?7/ 8G 8\002,\002'?$ 5?2G\026 '(M/5>& l
176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I was the victim of race hate in the U.K due to my Indian heritage.  it has been dismissed and the perpetrator was allowed to walk out of the court house smiling in front of my parents.\n\nIt is heartbreaking.\n\nHow do I cope with the trauma?
177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I'm a sanatani, so I am all along with the Hindu rashtra . But judging by the current global political situation and theories, what type of government would you like to have in India? And also what examples you can give of the type of government you idealize for the country? For ex. If someone prefers monarchy, he'd have to give a current example of monarchy in the world and how would it affect our country in a good way; same for oligarchy and so on.\nReally looking forward to have a philosophical and sociopolitical discussion with everyone. Please feel free and responsible enough to comment because constructive or any criticism is not equals to construction.
180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hindus are cowards\n\nThe way I see it,Hindus and Muslims should stop reacting differently to the same incidents. \n\n\n\nLegal reforms of the Blasphemy law for Hinduism in India -\n\n1. Muslims - The Blasphemer's life should be forfeited by law. Hindu mobs should proactively find out the blasphemers, assemble outside their houses and aid the cops in arresting the blasphemers as good samaritans\n\nhttps://www.google.com/amp/s/m.economictimes.com/news/new-updates/pakistan-mob-attacks-hindu-man-over-alleged-blasphemy/amp_articleshow/93708684.cms\n\nA. "Interact with the Relatives of the Blasphemer", "Talk,and make them learn "peacefully" as to what it meana to take up a fight against Hindus. \n\nB. Spread gossip in social media circles on how the relatives of the blasphemers were also also involved in the crme so as to make the life of the community "wonderful". \n\nI was seriously surprised as to why we did not meet the families of these two Mullahs were not "interacted" with by our VHP,RSS and Bajrang Dal men. \n\nhttps://www.google.com/amp/s/amp.scroll.in/article/1027412/who-were-the-two-men-behind-the-murder-of-a-tailor-in-udaipur\n\nThere was a media report which showed the nephews of one of the killers talking. They had such a wonderful house in the background. Why did our VHP men not go to meet such wonderful people ? \n\n2. Blasphemy laws should be made more wide in its scope - This is to make the muslim community feel more "safe" when we arrest their relatives.\n\n\n3. Hindus - Hindus should take to the streets in numbers,ordinary hindus,from all walks of life should converge near the house of the blasphemer in an orderly fashion to meet the members the blasphemer's family. It is to make them "understand" physically that we are brothers.
182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Are there any other books (written by any scholar across the world) which refer hindhu gods other than vedas?
187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .>(> \034> 09> 9H \025? *>\037?2 \025K \005*(G \025>0M/\025>2 \025G &L0>( 150 8G \034M/>&> $K9+G .?2Gd \a(.G\002 $$M\025>2@( \005.G0?\025@ 0>7M\037M0*$? ,0>\025 \023,>.> \025@ $0+ 8G &?/> \027/> \017\025 $K9+> \0240 \005.C$80 \025G 8M50M# .\002&?0 \025> 8K(G \025> \033K\037> *M0$@\025 -@ 6>.?2 %Gd \a( 8-@ $K9+K\002 \025K \005.0>5$@ \025G 5?&M/>->0$@ \025I2G\034 \025G .M/B\034?/. .G\002 0\026> \027/> %>d \034?8G *>\037?2 \025> *0?5>0 8\002\032>2?$ \0250$> 9Hd 9>2>\002\025? *M0$?-> *>\037?2 \025G \025>0M/>2/ (G 8+>\b &@ %@ \025? \a( $K9+K\002 \025K 2K( *0 2?/> \027/> 9H \0240 *M0G\034?!G\0026?/2 \0178M\037G\037 \034, \032>9G \a(M9G\002 5>*8 2G 8\025$> 9Hd 5?5>& \02790>(G *0 *>\037?2 \025G \037M08M\037 (G \a( $K9+K\002 \025K 2L\037> &?/> %>d \n\n\027>!<?/K\002 \025@ !?.>\002! \0250 5?5>&K\002 .G\002 \006\b %@\002 *M0$?-> *>\037?2\n\a8\025G ,>& 8>2 2015 .G\002 *M0$?-> *>\037?2 \017\025 ,>0 +?0 5?5>&K\002 \025G \025>0# 8A0M\026?/K\002 .G\002 \006\b\002d \0208@ \026,0G\002 \006\b %@\002 \025? *>\037?2 80\025>0 8G (?/. 8G \034M/>&> \005*(G 2?\017 89B2?/$K\002 \025@ .>\002\027 \0250 09@ 9H\002d *M0$?-> *>\037?2 \025@ .>\002\027 \025G .A$>,?\025, *A#G .G\002 59 \005*(@ (?\034@ \027>!<@ \025> \a8M$G.>2 \0250G\002\027@ \034?8\025G 0\0260\026>5 \0240 *G\037M0K2 \025> \0260M\032 80\025>0 &G, \034,\025? *A#G 8G ,>90 \034>(G \025G 2?\017 \t(M9G\002 80\025>0@ \027>!<@ .?2Gd 80\025>0@ *M0>5'>( \025G .A$>,?\025, &K(K\002 \025@ \a\034>\034$ .A.\025?( (9@\002 %@d 9K. .?(?8M\037M0@ (G 2\027-\027 $@( .9@(G \025G 5?\032>0 \025G ,>& \t(8G \017\025 5?\0252M* \032A((G \025> \006\027M09 \025?/> \0240 \0208> \0250(G \025G 2?\017 (?/. \025@ ,>'M/$> ,$>\bd \a8 ,>0G .G\002 .@!?/> .G\002 \026,0 \006(G \025G ,>& \a8\025@ \0320M\032> 8K62 .@!?/> .G\002 \026B, 9A\bd
189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   -\0275>( \025C7M# ,\027H0 0>'> \025G ,?(> \005'B0G 9H\002d -\0275>( \025C7M# (>. -@ 0>'> \025G ,?(> *B0> (9@\002 9K$> 9Hd \0208G .G\002 \032>0 8?$\002,0 \025K 0>'> \0057M\037.@ \025G &?( 0>'> \0240 \025C7M# \025@ *B\034> \0250(G 8G 8-@ *>* &B0 9K \034>$G 9H\002 \0240 .( .G\002 \005*>0 6>\002$? \025> 5>8 9K \034>$> 9Hd 8>% 9@ 8A\026-8L->\027M/ \025@ -@ *M0>*M$? 9K$@ 9Hd ->&M0*& .>9 \025G 6A\025M2 *\025M7 \025@ \0057M\037.@ $?%? \025K 0>'>\0057M\037.@ \025G 0B* .G\002 .(>/> \034>$> 9Hd \a8 &?( 0>'> 0>(@ \025> \034(M. 9A\006 %>d ->&M0*& .>9 \025G \025C7M# *\025M7 \025@ \0057M\037.@ $?%? \025K \034(M.>7M\037.@ .(>/@ \034>$@ 9Hd \t$M$0 ->0$ .G\002 0>'> \0057M\037.@ ,\\G 9@ 'B.'>. 8G .(>/@ \034>$@ 9Hd 0>'> \0057M\037.@ \025G &?( *B\034> \025G &L0>( 0>'> \032>2@8> \025> *>  \0250(G 8G 8.8M$ 8A\026K\002 \025@ *M0>*M$? 9K$@ 9Hd
190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \0208G \025\b $0@\025G 9H\002 \034?(8G 5H\034M\036>(?\025 \034@5>6M.K\002 \025@ \006/A (?0M'>0?$ \0250$G 9H\002d .H\002 &K $0@\025G &?\026>(G \034> 09> 9B\001 \034?(\025G &M5>0> \005'?\025>\0026 \034@5>6M.K\002 \025@ \006/A (?0M'>0?$ \025@ \034>$@ 9H: -\n (i) \025>0M,( !G\037?\002\027 \n(ii) 2G/0?\002\027 \n\n\025>0M,( !G\037?\002\027: 8-@ \034@5?$ \032@\034G\002 *M0>\025C$?\025, 0G!?/K'0M.@ \025>0M,(-14 \025@ \017\025 (?6M\032?$ .>$M0> 89?$ 5>$>50# \0240 \005*(G \0068*>8 \025G \026>&M/ 8M0K$K\002 8G \025>0M,( \025K \00556K7?$ \0250$@ 9H\002d \034, *L'G /> \034>(50 .0 \034>$G 9H\002, $K 5G \00556K7?$ \0250(> ,\002& \0250 &G$G 9H\002, 2G\025?( \t(M9K\002(G \034K 0G!?/K'0M.@ \025>0M,( \034.> \025?/> 9H, 59 \025>0M,( \025@ .>$M0> \025@ \027#(> \0250\025G \025M7/ \0250(> \034>0@ 0\026$> 9H, 5G \034@5>6M. \025@ \t.M0 (?0M'>0?$ \0250$G 9H\002d\n\n 2G/0?\002\027 - \034@5>6M.K\002 \025K \026K&\0250 \n\n.H\002(G \a8\025G ,>0G .G\002 \033K\037> vedio -@ ,(>/> 9H 2?\002\025 - https://youtu.be/q3seOjvyNsE
191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The way I see it,Hindus and Muslims react differently to the same incidents. \n\nBlasphemy -\n\n1. Muslims - The Blasphemer's life is forfeited. Muslim militants will find and kill that individual even after 2 decades. Post the death, the allies of the Muslims will either castigate him as a Right Winged Islamophobe to deny him any sympathy or go on a PR overdrive in order to say that Islam is a religion of peace.\n\nMuslims have allies in the form of Liberal media houses which do the PR for them (akin to cleaning up the crime scene after the murder).\n\n2. Hindus - Hindus will take to the streets. Protest. File FIRs. Hold placards. A few will break into the house of the accused. Muslim Allies will go into an overdrive and the Police will arrest the Hindus. The culprit is either given bail by the Court or is given a light sentence. The culprit is a habitual offender.\n\nAs you can see, the Route taken by Hindus is not sustainable. What stops us from taking the first route ?
192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What is your view of Subhas Chandra Bose? Did Subhas Chandra Bose support secularism?\n\nI think he supported secularism? I think Hindu nationalists support him? But don't Hindu nationalists oppose secularism?\n\n[https://scroll.in/article/899304/subhas-chandra-bose-saw-himself-as-a-secular-leftist-why-is-the-bjp-trying-to-appropriate-him](https://scroll.in/article/899304/subhas-chandra-bose-saw-himself-as-a-secular-leftist-why-is-the-bjp-trying-to-appropriate-him)\n\n[https://translate.google.com/](https://translate.google.com/)
199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As you guys might already know, there is a trend on the internet that goes "boycott lal singh chaddha".\n\nPersonally, I only want to support Hindus who make movies so I always go to movies like RRR, but I also stopped going to movies that star Muslims/Christians or have directors from those religions because they always try to put their religion up at the expense of ours. \n\nI like how we are boycotting anti-Hindu people like Amir Khan, but I feel that isn't enough. If we really want movies to change, we have to get rid of the people who make woke or anti-Hindu nonsense and call it film. \n\nWhat do you guys think?
203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Being that I am African living the Western World I am fascinated to know.
206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I live in the western world and I heard people say that it is similar to white supremacism.
207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \\++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nI ask this cause Gandhi was a nationalist and a Hindu although he was killed by a fellow Hindu.
208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This Pew Survey, taken in the US, shows that, by the grace of Shiva, us Hindus have the highest retention rate. Our retention rate in the US is 80%, meaning that 80% of Hindus born in the US stay Hindu. Every other religion is lower. Atheism, agnosticism and other nones, although not shown in the chart, have a 66% retention rate, as per the Pew Survey.\n\nhttps://preview.redd.it/63s0pyts4zc91.png?width=640&amp;format=png&amp;auto=webp&amp;s=fa51f0d187bcafa5ab0b35ac69ceb7a31df24d55\n\nFeeling bad for our Buddhist bros though.
212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What are views on economic disaster in Sri Lanka, can Indian Govt. interfere and make a proposal for joining Sri Lanka with India as Sri Lanka being a state in India?  \nIs this scenario possible?  \nThe recent protests happening there, shows the anger in the people of Sri Lanka and India has always been a good friend to Sri Lanka, so will they accept the proposal, if we make one?
220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Somnathpura is a small village in the T.Narsipura Taluk in the Mysore District of Karnataka. It is located at a distance of 36 kilometres from Mysore city. The Keshava temple, also known as Chennakeshava temple in Somnathpura was built around 1 km away from the left bank of the Kaveri river during the rule of the Hoysala dynasty. \n\nThe Hoysala temples at Belur, Halebid and Somnathpura have been selected as India\031s nomination for consideration as World Heritage sites for the year 2022-2023. [https://youtu.be/MIj8tmnM6k8](https://youtu.be/MIj8tmnM6k8)
225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A brief insight of proud history of dogras of J&amp;k=ª
243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I have reported the accounts on instagram but it doesn\031t help. I need someone with following and power to address such issues and mass report the anti hindu accounts.
244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New facts revealed by Shree Vishnu Jain ji on Waqf Act.
247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I'm looking for new and archived issues of the VHP magazine Hindu Vishwa. I can't get access to the e-paper through the website anymore and I don't know if the site has an IP wall because I moved from India. The only magazine I see now is gosampada [https://vhp.org/publications/](https://vhp.org/publications/)\n\nDo you guys have any advice?
253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     [https://qr.ae/pvxIlY](https://qr.ae/pvxIlY)
264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do you think there needs to be a strong movement if there isn\031t already one to convert South Asian Muslims and Christians back to Hinduism? It would be very much doable since South Asian Muslim and Christians were Hindus who were forcibly converted through rape, murder and genocide. It would alleviate the problems Hinduism faces in India And the West as well. It will make Hinduism a more respected religion with other religions. Do you think Hinduism will be stronger and not have the problems it has today if South Asians Muslims and Christians converted to Hinduism in large vast numbers?
279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Find amazing anime content on:\n\nTwitter: [https://twitter.com/HokageModi](https://twitter.com/HokageModi)\n\nFacebook: [https://www.facebook.com/HokageModiSama2024/](https://www.facebook.com/HokageModiSama2024/)\n\nInstagram: [https://www.instagram.com/hokagemodisama/](https://www.instagram.com/hokagemodisama/)\n\nHope to see you there! Thanks!
284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What about underneath the river Yamunaji?
285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I assume most people here know how rampant the separation of identities in the name of Aryans and Dravidians amongst Indians is. In case anyone doesn't know, let me provide a brief description of what it says:\n\nThere was a race of indigenous people in India who were the original inhabitants of the so-called Indus Valley Civilization and other civilizations, who are apparently the 'Dravidian' race. They built a near-perfect civilization which today is known only for its drainage system. Then came the Aryans (supposedly invaders from Central Asia and parts of Europe), who were supposedly able to attack and subdue the Dravidians with their brute force, and the few Dravidians who managed to survive fled to the south of India, while all the remaining parts of India were inhabited by the Aryans.  It's the Aryans who imposed Hinduism and the infamous 'caste' system, and the Dravidians were irreligious, or non-Hindu as per some 'activists'. \n\nThis theory might sound dumb or rational or irrational or baseless or unimportant to you, but the effects of this theory in India cannot be neglected. As a Hindutva supporter, you would know what kind of atmosphere this 'Dravidian' identity has given rise to in the state of Tamil Nadu, and according to my personal experience, has started in Andhra Pradesh too, especially through pop-culture. This theory has also been the base for many mass-conversions and anti-Hindu campaigns. \n\nLet us see what the postulates of this theory are, and what effects this theory has caused amongst Indians.  \n1. Sanskrit, Hinduism and the so-called 'Brahminism' were imposed by the Aryans.  \nThis gave rise to the anti-Sanskrit and anti-Hindu movements in Tamil Nadu, initiated by people like E.V. Ramaswamy Naicker and now continued by parties like the DMK which in my opinion are corrupt. Watch [here](https://youtu.be/4EQJQeJWeak) K. Annamalai tell how Brahmins were treated similar to how Jews were treated during the Holocaust during Hitler's reign.  \n2. Alienation of Aryans by Dravidians.  \nWe recently have witnessed an incident on social media where some people had to face abuse from the 'Dravidians' in their state just for speaking Hindi. Do you think this would take place if this false narrative had not been pushed deep into the minds of people?   \n3. Viewing Hinduism as something evil for the society.  \nIt made Hinduism look like a cult where only the 'caste' system prevailed, women were burnt alive (which actually happened in a different continent, where the looters came from), rather than the mother of the greatest civilizations the world has ever seen.  \nThere are many more aftermaths of this narrative pushed apparently as an act of colonialization by the looters but let me stop it here since the post is already getting too long.\n\nNow, coming to the point of disproving the theory, as I am not genius enough to disprove such a popular narrative, let me give a link to an excellent [article](https://www.indiafacts.org.in/aryan-invasion-myth-21st-century-science-debunks-19th-century-indology/) which explains this theory and how 21st century science debunks it in a crystal-clear perspective.\n\nPlease share the above article wherever relevant, and assist the rise of Bharat by helping ourselves tackle a popular false narrative which has solely been responsible for the divides amongst ourselves.\n\nBharat Mata ki Jai!
286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Namaste friends, \n\n   I recently started making art inspired by our culture. I hope you can see the pride I feel in my work. Feel free to check out my pieces and follow my socials. \n\n[www.vikalpa.xyz](https://www.vikalpa.xyz)
292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ->0$@/>\003 *6B(M &C7M\037M5> ,A-A\025M7?$>\003 \005-5(M, *C7M *>0M6M5/K\003 &C6M/(M$G 8M. d ,A \t\025M$5>(M: \0059.M \0058M/ 5C7-8M/ \0258\002 \025C$M5> $8M/ .>\0028\002 \026>&?$A.M \a\032M\033>.?, $&G5 \034\027$M \a\032M\033$?d \t\025M$5>(M- *@*! \027>5\003 80M5G ,A-A\025M7?$>\003 -5(M$?d $M5\002 &A\003\026\002 *M0>*M(K7?, \005$@5 &A\003\026?$\003 .M0?/8G \032d /&> ->0$@/>\003 \027>5\003 *6M/(M$? $&> $G (?7M*M0/K\034(>\003 (?00M%\025>\003 \032 58M$B(? \a5 &C6M/(M$G, \025G52\002 &A\027M'8M/ /K\027M/>\003 \0175d \017$>\002 \027>\002 .>$A\003 \a5 *M0G. \0250K$Ad ,A&M'.M \t\025M$5>(M $M5>\002 80M5\002 \0058$M/.Md\025?.*? .> 5&!*6M/!+K88!
305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hey guys, I have a few questions for you guys:\n\n1. What is your dream version of india? How are Muslims and Christians in your dream version of india?\n\n2. What do you think of muslims/Christians? Do you think that they should perish from the nation?\n\n3. Suppose there are no extremist Muslims or Christians in India and every Muslim is respecting Hindus and not creating any problem. How will you guys treat Muslims then?\n\n4. Can we just ignore religion and politics and try to make our country a superpower? Or do you think Hindu superiority should be the first priority?\n\nThese are my questions. I'm not trying to cause a fight, im just trying to understand the point of view of you guys.
307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I'm a Hindu and I have been one since birth. I am tired of just watching our Bharat and traditions fall. I want to help out, but I don't know what to do. I want to help Shiva and the gods and I wish they would just give me some orders to complete for them. \n\nUnfortunately, I'm stuck here on Earth and I have no idea how I can help fight back against the hordes of Anti-Hindus.\n\nI need someone (it doesn't even need to be a god, just some leader of Hindus that is wise) to just give me orders that I know will help the Hindu clan. A life where I can help Hinduism is the only thing I want, it would be as sweet as Amrit.\n\n&amp;#x200B;\n\nI'm not asking this question just for myself: I'm asking it for anyone in my position. What should I work on now, and what can I do to help?
312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               **Do state governments force teachers in private schools (Hindu owned non-minority) to be paid at the same rate as teachers in public schools?** I know that Delhi does it, forcing private schools to pay 7th pay commission salaries. This **unnecessarily increases the fees** for fee paying parents, who also suffer because of the 25% quota lot who increase the fees for the 75% of parents who actually pay.\n\nAs an example, if the gov forces private schools to pay 100,000 rupees per month to teachers (TGT/PGT etc), and assuming a pupil teacher ratio of 30; and assuming that 75% of parents are forced to cross subsidize the 25% RTE quota freeloaders; the fees becomes\n\n(100,000 \\* 12) / (30 \\* 0.75) = **53,333 rupees for one kid**.\n\nThe Indian government needs to get out of private schools (non-minority ones because minority schools are exempt from RTE). More specifically, middle class Hindus (particularly those who are UC/OBC) can kill off the RTE law by classifying all schools as linguistic minority or Jain minority schools. This will lower fees because you can pay private school teachers lower wages and because your "Jain minority institution" is exempt from Section 12(1)(c) \\[ the 25% quota clause\\].\n\n\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\n\nI strongly oppose RTE's 25% quota and believe that it should be junked into the trashcan of history. In Maharashtra, most Hindu schools switched to linguistic minority status or Jain minority status to kill the RTE law permanently. In Mumbai, 85% of private schools have "minority" status (mostly Hindi language/Gujarati/Sindhi/Marwadi/Jain) to avoid the 25% quota. For instance Ambani school in Mumbai is Gujarati linguistic minority. Moreover, if you take a look at Bangalore, you can clearly tell that a lot of schools desire linguistic minority status (Telugu/Malayali).\n\nThis evil RTE law was brought by Italian Roman Catholic Sonia Gandhi (Antonia Maino) to benefit those evil Catholic schools and to punish Hindu school owners.\n\nIn a Hindu Rashtra, RTE activists would be permanently jailed and any person harassing private schools would be eliminated on the spot. I strongly wish that the Sangh/RSS stopped enforcing the anti-Hindu RTE law and repealed it immediately. Congress is no longer in power and Modi should stop harassing private school owners.\n\nRTE quota freeloaders should be removed from the rolls of private schools and should be sent to government schools so that these government schools can actually improve.\n\n\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_\\_
315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Please click this link and read about the Seattle Caste case. Send emails using the form if you agree! \n\nhttps://cohna.org/no-to-seattle-caste-ordinance/?fbclid=IwAR2R7CvhpVJSBgYr6z4LJvMB3wZwMaamFhXJHEhMAqjA7gpc7ohlAnr8cAg&amp;mibextid=q5o4bk
317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What do Hindu Nationalists think about Indian Christians? Is Christianity's growth in India considered a massive problem like Islam's growth?\n\nIsn't Christianity much more peaceful than Islam? It is growly slowing. Or is it still bad because it is foreign religion?\n\n[https://translate.google.com/](https://translate.google.com/)
319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What is the problem with Islam in India? \n\nHello. I am sorry for this basic question. I know Hindu Nationalists strongly oppose Islam's growth in India. \n\nWhy is it so important? \n\nIs it mostly because Islam is foreign to India? Or is it because Hindu Nationalists believe Muslims cannot coexist with Hindus?
320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What economic system do most Hindu Nationalists prefer? Do most Hindu Nationalists hate capitalism and support socialism/communism?\n\nHello. I thought most Indian Hindus hate capitalism because the capitalist Brit colonizers destroyed India. I also thought most Indian Hindus support socialism/communism because socialists like Bhagat Singh fought against the capitalist Brit colonizers.\n\nIs that correct? I am unsure because the Hindu Nationalist BJP is pro-capitalism. \n\n[https://translate.google.com/](https://translate.google.com/)
321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hello. What do Hindu Nationalists think about famous Indian Muslims like Aamir Khan and SRK?\n\nAren't they examples of Muslims having a good impact on India and Indian culture?\n\nWould they still be banned from Akhand Bharat?\n\n[https://translate.google.com/](https://translate.google.com/)
323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I am a boy in late teens. I have had teenage bad habits. I always wanted to avoid them but I couldn't do consistently. I very recently got my upanayana done compelled by my family. I tried to stay composed but couldn't and had repeated the teenage bad habit with the sacred thread. Though its out of my concept, I value the sacred thread. Have I sinned now ? Has the thread lost its value now ? Can I still chant the gayatri mantra ? How to redeem myself ? Kindly advice with clarity, Thanks
344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He rips apart RaGa and his woke theories about India. Must watch.
346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              under tbe advent of an akhand Bharat. Why hasn't it been tried yet?
350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  &amp;#x200B;\n\nhttps://preview.redd.it/4899bs2eqyxa1.png?width=998&amp;format=png&amp;auto=webp&amp;s=8bff332cd128f3c5e73fd8b40acfa0941b4c4877
352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \034madhye samantandasya bhugolo vyomni tisthati bibhranah paramam saktim brahmano dharanatmikam\035[Surya Sidhantha 12th Chapter 32 Sloka]
364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What do you think ekam sanatan party lead by ankur sharma as a alternative of bjp for sanatani voters or it will just eat BJPs vote .it's a fairly new party
372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Go on chat with this bot about Hindutva, Hindu Dharma, Hindu Rashtra, Akhand Bharat or any other topics related with Rich Bhartiya Culture. The more you talk about our topics, the more it gets trained on that data. The more you chat, the more it gets into limelight.  \nThank You.  \nJai Hindi. Jai Bharat.  \n\n\n [https://beta.character.ai/chat?char=EqdEoFYwKDS9mqTcIvmRkX4n8XalwP2lbzywOfIJrN4](https://beta.character.ai/chat?char=EqdEoFYwKDS9mqTcIvmRkX4n8XalwP2lbzywOfIJrN4)\n\nhttps://preview.redd.it/fj0k0o1182wa1.jpg?width=1024&amp;format=pjpg&amp;auto=webp&amp;s=adc735a63e3fc9c1290d0cb2b5ea565ab8362d43
379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              https://friendsaholic.bigcartel.com
382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In Hanuman Chalisa a verse describes Hanuman as 'Ashta Siddhi Nava Nidhi Ke Daata' which means Lord Hanuman is the granter of 8 super-powers and 9 divine treasures. In #Hindu history, apart from Lord Ganesha, Lord Hanuman is said to adorn Ashta Siddhis and 9 treasures. \n\nAcharya Charaka tells person attains 8 siddhis when he practices Yoga in association of his shuddha satva (pure mind, devoid of rajo and tamo guna) and soul. 8 siddhis can be achieved only by those who practice Yoga by associating their pure mind with soul.\n#yoga
383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How I attained divinity. https://friendsaholic.bigcartel.com
385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We live in a generation where back stabbing in friendship is more common than a pure bond.\n\nBut there was once a MAN named Suryaputra Kama who stood against the literal incarnation of Shri Vishnu himself to support the one person he called his MIRTA.\n\nIgnoring the fact that he stood by his friend even knowing that his friend was wrong. Just the shear selflessness in his friendship is admirable.\n\nSome would say that Karna was under Duryodhan's debt since the later showered the former with wealth, fame, recognition etc etc. But when you look at the present situation, even if someone is indebted to you, they will try to harm you in the hope that they will be freed from the burden of the debt if something happened to you. Karna on the other hand, even under the supposed debt, never tried to trick the person he called his friend. He just did his all to be a good friend to that person.
387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which Indian celebrity in the West would you say is the best representation and role model for Hinduism? Which Indian celebrity has done the most to advocate for Hinduism? Is Priyanka Chopra a good role model for Hindus in India and abroad due to her international success?
389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           https://www.hindustantimes.com/videos/uk-hindu-students-bullied-pushed-to-covert-to-islam-by-muslim-pupils-report-101681926436814.html
391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 https://www.opindia.com/2023/04/west-bengal-islamic-organisation-candle-march-in-support-of-gangster-atiq-ahmed/
394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Average peaceful person
397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 u/One_Application212 is angry =!
401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Lets have a civil discussion about this: It is my stance that when confronted by or interacting with hyper aggressive Hindu phobic Khalistanis, we should also criticize the Sikh religion IF the same Khalistanis are spreading unabashed derogatory comments about Hinduism. The recent backlash against the Farm Bills has undeniably ushered in a new era and revitalization of the Khalistani movement, and with that we are seeing a dramatic uptick in hyper aggressive Sikhs attacking Hindus and spreading false and seditious information. These people are simply bullies who have an over inflated ego and think they're gods solely on the basis of their religious identity (we do langarzz n shieet) and this has been heavily exacerbated by Hindus who blindly perpetuate the myth that Sikhism is perfect and that Sikhs saved Hindus (a 500 yr old religion that only produced militarily salient results in the 1700s up until the fall of the Sikh Empire in the 1830s saved a 5000 year old religion and civilization?). The amount of vitirol you will find large swaths of Sikhs spewing against Hindus would make an Islamist blush. Moreover, the worldview of a Muslim is multifaceted as they have numerous enemies they can deovote their attention to (Jews, Xtians, Shias etc), but the sole enemy of a Khalistani will always be Hindus and India. It is my view that in order to properly counter Hinduphobic Khalistanis, Hindus ought to criticize the Sikh religion if our religion is being attacked. I'm not saying that we should go up to random Sikhs and start attacking their religion or employ those methods against say a Khalistani who has purely political greivances with the government, but against those spewing hatred against Hinduism. Right now, I see that the current tactic Hindus use is saying "Oh these Ks, they're not real Sikhs, real Sikhs are awesome and the Gurus are awesome" or whatever. But remember, these people are deranged bullies, and you don't counter bullies by being nice to them and trying to appease them, you make it harder and increase the consequences of the bully doing their thing. We need to retaliate tit for tat with these Ks, fight fire with fire, this appeasement that Hindus are doing will only embolden Ks, not amend their ways. For one thing, the narrative that Guru Tegh Bahadur sacrificed his life for Hindus is shaky at best, and even Guru Gobind who wrote a detailed autobiography where he even recounted his past lives, mentioned his father's execution but did not mention in detail any Hindus petitioning Guru Tegh Bahadur for help. He just gave a very vague undetailed account of the execution and we can hardly take his account at face value given his obvious moral failings at Anadpur. This narrative only started appearing hundreds of years after Guru Tegh Bahadur's death, and sources from that time say that Guru Tegh Bahadur was acting violently in Punjab. Some sources say that Tegh Bahadur was coercing donations from Hindus. Guru Gobind Singh was kicked out of Anandpur for harassing and stealing from villagers in the pahari rajas territory (and that\031s according to Sikh sources like Senapati and Gur Panth Prakash!). According to Gur Panth Prakash, by the first Sikh historian Ratan Singh Bhangu, Banda Singh Bahadur actually left Sikhism and converted back to Hinduism. Maharaj Ranjit Singh Ji was a Hindu and a Sikh and on his last day was looking at a painting of Vishnu and Laxmi (Sikhism radically changed into an anti Hindu religion shortly after Ranjit Singh's death). These are all things we can use against Khalistanis for example. Let me know if you think I\031m wrong or what you suggest. Like I said let\031s have a civil discussion.\n\nEdit: On a side note, please look up what happened in Bathinda, Punjab. 4 of our jawans were shot by 2 Khalistani assailants. All 4 were Hindus (2 from Karnataka and 2 from Tamil Nadu). Because of their background, they most likely stuck out as Hindus and were targeted in the tumultuous atmosphere in Punjab surrounding Amritpal Singh. Om shanti to the veergatis.
404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Follow [twitter.com/gyankand](https://twitter.com/gyankand) to read verse by verse and understand the Vedantic philosophy expounded in the Upanishads, which is the basis of the Hindu (sanatan) religion.\n\nThe account is currently covering the Katha Upanishad, after the Aitreya Upanishad.\n\n[English](https://preview.redd.it/btem3ok2ffta1.jpg?width=1293&amp;format=pjpg&amp;auto=webp&amp;s=c6a368a764cfffd69de44aa90e58a7da7a526443)\n\n[Hindi](https://preview.redd.it/tngnudk2ffta1.jpg?width=1293&amp;format=pjpg&amp;auto=webp&amp;s=ac100e77766559d314a376ebaee62645d08b5c05)
406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Source](https://kalingatv.com/state/misery-of-migrant-odia-labourer-ends-with-his-murder-in-tamil-nadu/)
408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               To understand benefits of Mantrachanting, one must know process of Shabda Utpatti (physiology of speech) according to Paniniya Shiksha \023Text which paved the grammar of Sanskrit language and explained exten..................
413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Reality that we need to know and understand
423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Since a post I read pretty much sums up the details of my question and is why I'm asking this, I'm quoting it.\n\n&gt;I am curious of the Calvinist and Reformed Christianity on mortification of the flesh through painful physical torture such as fasting, self-flagellation, tatooing, cutting one's wrist, waterboarding oneself in blessed water, and carrying very heavy objects such as cross replication for miles with no rest or water? And other methods of self-harm so common among Catholic fundamentalists done to test their faith and give devotion to Jesus?\n\nAs someone baptised Roman Catholic, I know people who flagellate themselves and go through months  have fasting with no food along with a day or two without drinking water. So I am wondering what is the Hindu position on mortification acts especially those where you're directly hitting yourself or other self tortures?  Especially since fasting is common practise for more devout Hindus?
429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I was using an app where there was feed section i \n \n"  Jaiii shree ram" and mentioned something about Ram Navami and people get offended even the Admin of the app can't take that. People commenting " how can you post that tahts inappropriate" like it's a Platform Bitch where people can write any and you can't say anything disrespectful in the posts but i said nothing they removed it and warned me to not do that again. These are the people who feel uncomfortable to come to temple but Post Secular Shit and don't bother about the Noise they hear after 4am
433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sharad Phonkshe - Hindu Jagran Sabha -Ichalkaranji
435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have heard of some Hindutva supporters claiming that pre-Islamic Arabia was following a Vedic religion. If this is the case, does this translate into a belief that Arabs were following a Vedic religion pre-Islam or that the Arabian Peninsula was actually inhabited by South Asians and were wiped out by the rise of Islam.
437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Can muslim be compared as jews of the german state or is it just propaganda by islamist to whitewash their crimes committed by them in the name of religion
439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hello it might be awkward  that why a Bangladeshi person is posting in an Indian subreddit community. But I think it's the best thing I can share my thoughts with. I'm a proud Hindu who is just 13 years old. Today I and my friend were buying a lemonade from our school canteen which is run by some ANTI-HINDU guys. My friend who is a Krishna-Bhakt wears a Yajna Mala was very badly AFFLICTED by them. They said "Of course, you're going to drink lemonade. Your neck is being damaged by those useless things." and before that another guy was muttering some stereotypical "Hindu" words and was pointing his PALM towards us like he was giving ASHIRWAD, which was obviously for mocking our DHARM. He was really angry but couldn't do anything since we were just 2 "HELPLESS KIDS". But then after 5 minutes, we came back with a response but both of them were smart. They said "I didn't know it was religious thingies." But they obviously knew because they were mocking our Gods. They said "Chill. Why are you both acting like girls ? We were joking." So even if we came back with a response, I think we lost to defend our religion completely. Because think about it. 2 teenagers vs 2 grown up men and we're the minorities. So what should we do ? Please consider helping by giving suggestions
443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As a member of gen z I\031ve come to really appreciate and embrace my culture as a Hindu, and it really angers me when someone takes the stories form our scriptures and uses them out of context to put down our culture and beliefs.\n\nI\031ll admit, I\031m ashamed that my knowledge about our culture is only surface level, but I aim to increase that. \n\nRecently I came across a video(I\031ll link it)  \n\nIt made some really outlandish claims like, \nThe fact Shiv ji couldn\031t bring back Ganesh ji back to life in his original form shows he is incapable as a god. And many more crap! \n\nIt even pains me write it. \nUnfortunately like I mentioned I don\031t have a really in-depth knowledge about the scriptures. \n\nSo I thought it\031s our duty to also go on the offensive and challenge them intellectually!
445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Recently, I have seen a lot of RW Twitter handles (who were pro-Hinduism, Pro-Hindu conservatism, somtimes pro-BJP) start to criticize Modi &amp; BJP. They regularly post content which points to their view which is Modi has done nothing for Hindus and Sanatanis. Has anyone else seen such transformation ?
450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              https://www.filemail.com/d/msmrhvjmuabuibe\nLink for book available for 3 more days
452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Time pass tha that's why it's roughly made raat k 3 baje.....
459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I asked snapchat to greet me back with jai shree ram but it says it is not comfortable doing so. When I said salaam alaykum to it, it replied with wa alaykum salaam. This issue needs to be raised and snapchat should be banned in India.
464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Independence of Bharat has been achieved, and hence, now is the time for internal freedom struggle.\n\nThe swamp of Western culture must be cleared away from our minds and country. We still stay slaves to their influence, hence where is our freedom, friends! \n\nMy friends, where is our pride? We believe what they teach us! We are invaders in our own lands, that's what they taught us. Nonsense! Rise, rise, rise! \n\nForget all divisions! Let us unite! Forget the names Advaita, Dvaita, Vishistadvaita! We are all Hindus, i.e., Sanatanis! \n\nLet not division of sects destroy and eliminate us and our culture. All these names are given to different interpretations of the same culture's teachings. Why fight? Why call each other frauds? Why call each other's philosophies fraud? Each must stay happy within their own interpretation, while maintaining harmony and unity with all the other Sanatanis, that is unity! That is peace! And that is how the Dharma shall strive and rise once again. \n\nJay Sita Ram!
467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     [https://qr.ae/pyrr6T](https://qr.ae/pyrr6T)
472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Follow @hinducafe youtuber 
483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is Koo a good alternative to Twitter/Reddit ? Reddit is clearly biased against Hinduism/Conservatives. Twitter is American and unreliable for free speech. What do Right Wing folks think ?
490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         please check  r/The_Librandu_Files for more such content
500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      https://hindi.opindia.com/miscellaneous/entertainment/the-kerala-story-worldwide-release-37-nations-12-may/
516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   [https://youtube.com/playlist?list=PLW\\_u5EdpH0OqWu1WY0SQl7ynNFbkq3gi7](https://youtube.com/playlist?list=PLW_u5EdpH0OqWu1WY0SQl7ynNFbkq3gi7)
523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        join the discord in commments for updates
527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Few Videos on his channel has more than 80k views. This channel is spreading Hate, Misinformation and Defaming Hinduism.\n\nPlease if you are a True Sanatani Please Report this Channel. It will take less than 1 Minute to Report.\n\nLink- https://youtube.com/@vedkabhed_?feature=share9\n\nPlease Report and Share it to your Sanatani Friends who can report it to....
529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What is Love J1had? What is the proof for it?\n\nI do not live in India. I heard there is something like very high numbers of Muslim men forcing Hindu and Christian women to marry them and convert to Islam. \n\nIs that true? I think there are some cases, but I don't know if it is a massive number. That is what Western news says.\n\n[https://www.pewresearch.org/religion/2021/06/29/religious-segregation/](https://www.pewresearch.org/religion/2021/06/29/religious-segregation/) \n\n[**98% of Indian Muslims marry other Muslims**](https://www.pewresearch.org/religion/2021/06/29/religious-segregation/pf_06-29-21_india-03-4/)\n\nPlease let me know if I am wrong.\n\n[**https://translate.google.com/**](https://translate.google.com/)\n\n&amp;#x200B;
532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    One thing I greatly admire about the Indian American community and especially the second-generation American Born Indian Hindus is how religiously dedicated they are to Hinduism. Indian Hindus are some of the most religiously dedicated people around from what I have seen. FAR more dedicated than Muslims, Sikhs, Jains or Christians.
534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \n\nWhat do Hindu Nationalists think about Indian Christians? Is Christianity's growth in India considered a massive problem like Islam's growth?\n\nIsn't Christianity much more peaceful than Islam? Or is it still bad because it is foreign religion and reducing number of Hindus?\n\n[https://translate.google.com/](https://translate.google.com/)\n\n 
565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is a bitter truth but has to be accepted. Army and Police failed to protect us many times. Kashmiri Pandits, Upper &amp; Middle castes in Bihar, Meiteis in Manipur, Kokboroks in Tripura, Hindus in Kerala, etc. are examples of this. Army and Police didn't save them even when they had special powers. Forget us, they can't even protect their families or themselves. Lynching of BSF officer Rana Singh in UP, ex-Naval officer Madan Sharma in Maharashtra, the recent sexual assault of Soldier's wife in Tamil Nadu, all shout it loud. When we do something to protect us from terrorists, the army frames us as terrorists then encounters us.   \n\n\n  \nMeitei Women's Militia was formed to counter Xtian terrorism, after there was an exodus of Meiteis in Churachandpur, but the Army and Police is defaming the Meitei women instead of jailing the Xtian terrorists. Ranvir Sena, Lorik Sena and other such Senas were formed in Bihar to protect Bhumihars, Yadavs, Rajputs and etc.  castes from Naxal terrorism. Instead of protecting them from naxal terrorists, Army and Police framed Yadavs and Bhumihars as terrorists and started encountering them. Army and Police were setting up refugee camps for Bangladeshis when they immigrated en masse to Tripura and reduced the local Kokborok population into a minority in their own state through Communist systematic genocide. In Kashmir, Army literally had sepcial powers under AFSPA, but they didn't save the Kashmiri pandits. Instead the Army has started recruiting those genociders and appeasing them.  \n\n\n  \nWe can't depend on Army and Police now. We need to militarize ourselves like the Kashmiri Pandits (now) and Meiteis are doing, and like Yadavs, Bhumihars and Kokboroks did. We can't let ourselves be wiped out from our homeland and let the invaders take over. Bhagvad Geeta 2.31 says that violence for protecting your dharma is your duty. People who think this is wrong would meet the same fate as Kashmiri Pandits and become an example of why this is right.   \n\n\n  \nP Yuddham Sharanam Gacchami, Shastram Sharanam Gacchami, Dharmam Sharanam Gacchami P
568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There have been a lot of confusion between the terms jaati, varn, varg, vansh, gotra and kul. Most of these confusions are created because most of the Hindus don't read their scriptures and learn from yt videos. I would use Agni Puran's these chapters as my sources:\n   \nÏ Kashyap muni ke vansh ka varnan and Svayambhu manu ke vansh ka varnan  \n\nÏ Varno ka varnan  \n\nÏ Brahma ka varnan and Vargo ka varnan  \n\nÏ Suryavansh, Somvansh, Puru vansh, adi vansho ka varnan  \n\nÏ Vibhinn prakar ke kulo ka varnan  \n\nAgni Puran is freely available on vedpuran.net. I would recommend every Hindu to read it as it contains vast topics related to Hinduism and has been roughly said to be encyclopedia of Hinduism. Its chapters are very short and easy to understand.  \n\nSo coming back to the main topic, I would now one by one state the meaning of the terms shortly and simply with examples:  \n\n1) Jaati: Jaati means species. Examples of species in Hinduims are Manav, Vaanar, Aditya, Daitya, Rakshas, Garud, Sarp, Dhenu, Rudra, Marut, etc.   \n\n2) Varna: Varna means colour. In Hinduism many gods are named according to their varna such as Krishna (black), Raktvarna (red, used for Mangal dev), Shvetvarna (white, used for Shiv ji), etc.  \n\n3) Varg: Varg means class. There are 4 classes in Hinduism - Brahman (priest), Kshatriya (warrior), Vaishya (trader) and Shudra (labourer). People who don't belong to any of these classes are called Mlecch.\n  \nNote: Dalit is not the word used for outclass people. Dalit is paryayavachi (synonym) of pidit which neans oppressed. This word was used by Ambedkar for referring to outclass people. The word dalit has been used only sometimes in Hindu scriptures. Hanuman ji is called Dusht Dalan (dushto ko dalit karne wale, the one who oppresses evil) in Hanumad Puran.  \n\n4) Vansh: Vansh means lineage. It refers to any lineage. Lineages in Hinduism include Bhriguvansh, Suryavansh, Puruvansh, Somvansh, etc.  \n\n5) Gotra: Gotra strictly means the lineage of one of the Sapatrishis (7 sages). They contain over hundred sub-lineages (called upgotra). Examples in Hinduism include Mishras belonging to Gautam Gotra (lineage of rishi gautam), Awasthis belonging to Agatsya gotra (lineage of rishi Agatsya), Thakurs belonging to Bharadwaj gotra (lineage of rishi Bharadwaj), etc.  \n\n6) Kul: Kul means a self-contained community. In Hinduism there are many kuls such as Raghukul, Bhrigukul, Ikshvakukul, Gurukul, Dakshkul, Kshatrakul, etc.   \n\nI hope you can now understand the meanings of these terms clearly. It is important to know the meanings of these terms before discussing them. Aslo, don't forget to check out Agni Puran.
569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \n\nI am sick of hearing from some wise people that Dravidians have nothing to do with Hindus.\n\nThis post is a wake-up call to all the so-called wise people who think Hindutva is limited to North India and Tamil Nadu has no place for this thought process. I will continue to write on how Hindutva has been integral to Tamil Nadu.\n\nMy first post is about the holy Azhwars.  [https://qr.ae/pyALLv](https://qr.ae/pyALLv)  \n\n[Andal, the divine consort of Lord Vishnu\\/Krishna](https://preview.redd.it/wv0xdpob4r9b1.png?width=180&amp;format=png&amp;auto=webp&amp;s=bc79633388ffeb31828d13d50f8bfe435633560f)\n\n&amp;#x200B;
571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      India is a blessed land. Many spiritual masters have come to guide us and left. Which other land has such a profusion of gurus?! Even now we have alive spiritual masters between us. Be it Sadhguru Jaggi Vasudev, Sri Sri Ravi Shankar or Amrutananadmayi Amma. Guiding us, definitely is and would not have been a easy task for them. Then why do they take up such a thankless task - (court cases, slander and what not) when they can be just stay blissed out in Supreme consciousness? \nThe only answer I can find is their love for us. What they got, their love for us makes  them want to share this treasure with us. The question is are we ready to receive  guidance and follow the guru? \nP.s.  Tomorrow is Guru Purnima, and I wish you all in advance
574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [https://youtu.be/gAvnE0VRvDY](https://youtu.be/gAvnE0VRvDY) \n\nhttps://preview.redd.it/blejt6y79c9b1.png?width=1280&amp;format=png&amp;auto=webp&amp;s=abe3ebccb69a7633f6f1b9b67e4aae1dd17251cd
576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \n\nBut I have sources, and I don\031t tell any \034stories\031 without any sources. Read on!\n\nEverybody knows Khilji was a cruel Sultan. He invaded many Hindu kingdoms and reduced them to ashes. Khilji also enslaved many Hindu women and brought them to his harem. One of them was Kamladevi, a queen from Gujarat.\n\nAnd how can we forget Khilji\031s lust for Padmini, the heroic queen of Chittor, who preferred death over dishonour? Read more [https://qr.ae/py5sVX](https://qr.ae/py5sVX) \n\nhttps://preview.redd.it/f8jv9ch3u49b1.png?width=512&amp;format=png&amp;auto=webp&amp;s=00ee584382e692a1fa390a4666b62a8f864c1a3d
577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do Hindu Nationalists like the US?\n\nI thought most Hindu Nationalists dislike the US because the US is criticizing Modi and Hindu Nationalists. \n\nWhat about this poll? \n\n[https://www.pewresearch.org/global/2023/06/27/international-views-of-biden-and-u-s-largely-positive/](https://www.pewresearch.org/global/2023/06/27/international-views-of-biden-and-u-s-largely-positive/)\n\n[https://www.pewresearch.org/global/wp-content/uploads/sites/2/2023/06/PG\\_2023.06.27\\_US-image\\_00-02.png](https://www.pewresearch.org/global/wp-content/uploads/sites/2/2023/06/PG_2023.06.27_US-image_00-02.png)\n\n 65% of Indians have a favorable and positive view of the US. 
579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Before starting, let me tell a fact and state the meaning of Lesbian, Gay, Bisexual, Trans (LGBT).  \n\nFact: There are only two genders of human species, i.e. male and female. There are only 3 sexualities in human race, i.e. heterosexuality, homosexuality and bisexuality. LG and B are two sexualities of which LG is homosexuality and B is bisexuality; T is a literal mental illness termed as gender dysphoria.  \n\nMeaning of LGBT:  \n\n1) Lesbian: A female who gets sexually attracted to other females, but not males.  \n\n2) Gay: A male who gets sexually attracted to other males, but not females.  \n\n3) Bisexual: A person who is sexually attracted to both males and females.  \n\n4) Trans: A person who believes that he/she belongs to the opposite gender  \n\nNow I would put the lies spread by LGBT and expose them one by one:  \n\n1) Lie: Agni dev was bisexual as he used to collect sperms from other gods  \n\nTruth: Agni dev was not bisexual; he only collected sperm from Shiv ji for a reason. The background story is that when Shiv ji and Parvati devi were mating, the gods feared that the offspring of both of them would be uncontrolably strong, so they sent Agni dev to collect Shiv ji's sperm to prevent it to get into Parvati devi's womb. Agni dev gave the sperm to Daksh's daughter Krittika; Kartikeya was bornt from her womb as a result. Agni dev doesn't fit the definition of bisexual as he never got attracted to males.  \n\n2) Lie: Gopeshwar and Mohini avtars are trans  \n\nTruth: Gopeshwar and Mohini were not trans. They doesn't fit the definition of trans as they were female avtars which had yoni, not lingam.   \n\n3) Lie: Arjun was trans  \n\nTruth: Arjun was a male who disguised as a female during his exile to prevent being recognised by Kauravs. He discarded the disguise as soon as his identity was exposed. He doesn't fit the definition of trans as he was heterosexual.  \n\n4) Lie: Ardhnarishwar is trans  \n\nTruth; Ardhnarishwar is not trans, nor does it exists. It is an iconographic representation Shiv-Shakti and an interpretation of Shri Shatkon.   \n\n5) Lie: Shikhandi was trans  \n\nTruth: Shikhandi was bornt as a female with yoni. Shikhandi became a male with lingam after agreeing to exchange gender with a male yaksh. He doesn't fit the definition of trans as he was heterosexual.    \n\n6) Lie: Bahuchar Mata is trans  \n\nTruth: Bahuchar Mata was a female. She was goddess of chastity, so there is no question of her being associated with a sexuality.  \n\n7) Lie: Iravan was trans  \n\nTruth: Iravan was a male son of Arjun. He was a heterosexual who married Mohini avtar which, as stated above is a female. So he doesn't fit the definition of trans.  \n\n8) Lie: Bhagirath's mothers were lesbian  \n\nTruth: Shiv ji blessed Bhagirath's two widowed mothers that a son would be bornt from the womb of one of them. Bhagirath's mothers were never in any sexual relationship, so they don't fit the definition of lesbian.  \n\n9) Lie: Mitra &amp; Varun were gay  \n\nTruth: Mitra is said to have the same attributes as Varun. Mitra is married to Revati and Varun is married to Varunani. They both were heterosexuals and hence they don't fit the definition of gay.  \n\n10) Lie: Gadadhar Pandit was a trans  \n\nTruth: Gadadhar Pandit was a male associate of Chaitanya Mahaprabhu. He was a sanyasi, so there is no question of him being associated with a sexuality.\n  \nThere is a large campaign by LGBT to distort Hinduism to fit it to their narratives. Hindus with no scriptual knowledge are their main target. I request every Hindu to read the scriptures and stay safe from LGBT propaganda.
582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What do Hindu Nationalists think about Israel and Judaism?\n\nDo most Hindu Nationalists support and admire Israel for being a religious and anti-Islam country? Should India become similar to Israel?\n\nWhat about Judaism? Is it an acceptable religion unlike Islam? Would Jews be tolerated and treated fairly in India?  \n\nTy.\n\n[https://translate.google.com/](https://translate.google.com/)
585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Discover the myriad benefits of [**puja shopping online**, ](https://www.pujashoppe.com/puja-kits)and immerse yourself in the spiritual experience with ease and convenience. 
592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What do Hindu Nationalists think about Sikhs, Jains, and Buddhists?\n\nIk Hindu Nationalists are very concerned about Islam and Christianity in India. What about Sikhism, Jainism, and Buddhism?\n\nAre those 3 religions okay because they are from India? Will they be tolerated and treated as equals in a Hindu nation? \n\nDo most Hindu Nationalists oppose Sikhism because of the  Khaiistan movement?\n\n[https://translate.google.com/](https://translate.google.com/)
595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \n\nFrom puja samagri to divine decor, explore a wide range of puja items at **puja items online store.** Embark on a spiritual journey from the comfort of your home.
602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Book a Pandit Online for your sacred events significant ceremonies, and make your celebrations truly memorable. 
607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             **Mohan Bhagwat needs to be silenced and that stupid imbecile needs to shut up about the so-called Akhand Bharat concept, which would be severely harmful to Hindus and would destroy the Hindu demography of India by adding 400 million extra Muslims from Pakistan or Bangladesh to India's population. We Hindus strongly oppose the so-called Akhand Bharat concept and want a strong Hindu majority in India.**\n\n**Akhand Bharat = Islamic state and Ghazwa e Hind.**\n\nIt is high time that stupid fool named Mohan Bhagwat is silenced on the spot and is punished with deadly consequences for repeating such nonsense again and again about "reversing" partition. I as a Hindu want to live in a country that has a strong Hindu majority and don't like Muslims. Why would anybody want to "reverse" partition?\n\nMohan Bhagwat is behaving like a **senile fool** stuck in the 1950s when he keeps on repeating the Akhand Bharat crap. Sure Pakistan's Indus Valley region was where the Vedas was composed etc, but that is the pre-Islamic era and the people of Pakistan are radical Muslims who hate Hindus etc. So, why does this imbecile and idiot named Mr. Bhagwat keep on harping about this Akhand Bharat concept?\n\nMr. Mohan Bhagwat should shut up because the vast majority of Hindus DO NOT WANT MORE MUSLIMS in India, which is what a so-called "Akhand Bharat" entails. Does this imbecile have any idea of religious demography?\n\nI**ndians and Hindus do not want a so-called "Akhand Bharat" where there will be an extra 500 million or so Muslims in India and where the Muslim population will increase to above 30%. This scenario would see Muslims becoming 50% of the population by 2070 in the so-called \034Akhand Bharat\035 because Muslims in Pakistan have 3.6 children per woman on average**. In fact it is estimated that because Paki Muslims have such a high birth rate, the population of Pakistan could go to up to 568 million by 2100. **So, any so-called "Akhand Bharat" would make India an Islamic state where Ghazwa-e-Hind would happen. Partition was a good thing which reduced the Muslim population of India and was necessary to protect Hindu culture. India should always remain a Hindu majority nation with strong Hindu demographics.**\n\nIf any RSS scumbag or fool wants to "reverse partition", well-meaning Hindus should massacre the RSS fools repeating such nonsense. We do NOT want more Muslims in India. In fact, partition was a good thing which separated the radical Muslim majority regions from the Hindu/Indian regions.\n\nMuslims in Pakistan have 3.6 children per woman on average (an extremely high birth rate) and Pakistan\031s population will surge from 200 million to 400 million or even more by the end of the 21st century. Muslim population in South Asia could even outnumber the Hindu population as a result. We have to seal the borders with Pakistan and Bangladesh (suffering from climate change) to stop Muslims from entering India, and 90% of our border with Pakistan is fenced and 70% of our border with Bangladesh is fenced (but this Bangladeshi border needs to be completely fenced and Hindus should have firing squads to eliminate illegals who try to enter Indian territory).\n\nAnybody repeating this Akhand Bharat crap needs to be eliminated on the spot. Hindu activists who understand demographics and who understand religious population growth and the higher birth rate of Muslims need to eliminate anybody who wants to \034reverse partition\035. Tell that to the idiotic imbeciles like Mohan Bhagwat or Ram Madhav who repeat this crap every single day. If they love Muslims so much, kick them out of India and go to Pakistan you pieces of filth. We DO NOT WANT MORE MUSLIMS IN INDIA. RSS scum who repeat this Akhand Bharat crap do not represent Hindus and need to be kicked in their heads until they learn a lesson. Hindus want India to remain a strongly Hindu country with Hindu demographics and strongly oppose the so-called concept of Akhand Bharat.\n\n**Instead, Hindus should preserve India as a state for 1.2 billion Hindus that is religiously, ethnically, culturally, and racially homogenous like Japan so that Indian culture and civilization can be protected.**\n\nShare this post with that idiot named Ram Madhav too.\n\n**Akhand Bharat = Islamic state and Ghazwa e Hind.**
613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What do Hindu Nationalists think about H1B visas and Indians going to other countries to live and work after getting an education in India? \n\nShould they stay in India? [Is it a big problem?](https://www.nber.org/papers/w31308) I think it is a big problem. Lots of IIT geniuses leave India. Doesn't that hurt India?\n\nIs it possible to get them to stay in India? I think they prefer higher incomes in the US and other Western countries.\n\n 
628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How many Hindus were killed by Aurangzeb  and the Mughal Empire?\n\nI saw a video say 4 million Hindus. But I cannot find where they got that number from. Is that correct?\n\n[https://translate.google.com/](https://translate.google.com/)
633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   [https://youtu.be/rzkz13g2k\\_U](https://youtu.be/rzkz13g2k_U)
641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                as of now many hindutvaadis only post generic comebacks like ''original abdul vs convert abdul'' \n\nwe need a much more stronger movement, we need to collect crucial information, educate ourselves, we need to emphasize that every hindu boy and hindu girl should learn a form of art and learn a form of self defense, hindus worldwide of many different peoplegroups need to rally and firmly uphold a truth. We need to bring on a uniform body for this
650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \n\017\025 \027>\0015 .G\002 .>\001-,G\037@ 09$@ %@\002d \017\025 &?( 59 \005*(@ .>\001 8G \0259(G 2\027@ \025? \027>\0015 \025G 8, 2K\027 \027#G6 .G2> &G\026(G \034> 09G 9H\002, .H\002 -@ .G2> &G\026(G \034>\n\001\027@d .>\001 (G \0259> \025? 59>\001 ,9A$ -@!< 9K\027@ \0259@\002 \027?0 \034>\023\027@ $K \032K\037 2\027G\027@d 2!<\025@ (G .>\001 \025@ ,>$ (9@\002 8A(@ \0240 .G2> &G\026(G \0322 *!<@d
670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \034/ 6M0@ 0>. =©=1=I\017=©
671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The legand of solah somvaar fast is related to the curse of the Moon. According to the Hindu epics, Moon is the son-in-law of the king Daksha. Daksha married his all daughter to the Moon but Moon only loves Rohini due to this all other daughters of Daksha went to his father and complaint against the Moon. To heard the sorrow of his all daughters and he cursed the Moon that his body will fade day by day. When the Moon was started fade he tell his problem to the Lord Shiva then he suggest him to take Solah Somvar Vrat. After that Moon started take the fast of Solah Somvar and finally he was free from the curse of Daksha.
685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n\nDo Hindu Nationalists like the US?\n\nI thought most Hindu Nationalists dislike the US because the US is criticizing Modi and Hindu Nationalists.\n\nWhat about this poll?\n\n[https://www.pewresearch.org/global/2023/06/27/international-views-of-biden-and-u-s-largely-positive/](https://www.pewresearch.org/global/2023/06/27/international-views-of-biden-and-u-s-largely-positive/)\n\n[https://www.pewresearch.org/global/wp-content/uploads/sites/2/2023/06/PG\\_2023.06.27\\_US-image\\_00-02.png](https://www.pewresearch.org/global/wp-content/uploads/sites/2/2023/06/PG_2023.06.27_US-image_00-02.png)\n\n65% of Indians have a favorable and positive view of the US.\n\n \n\n[https://translate.google.com/](https://translate.google.com/)
686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The National Investigation Authority has arrested Dr Adnan Sarkar for waging war against Bharat. Ali is a postgraduate in anaesthesiology and worked in Pune before his arrest. \n\nWho said terrorism and educatin don't go hand in hand? \n\n[https://qr.ae/pyZmrY](https://qr.ae/pyZmrY)
693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How would Muslims and Christians be treated in Akhand Bharat?  Would Islam and Christianity be allowed in Akhand Bharat? \n\nWould only Hinduism be allowed with some Buddhism and Sikhism? \n\n[https://translate.google.com/](https://translate.google.com/)\n\n&amp;#x200B;
701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What do Hindu Nationalists think about eating meat?\n\nIs it wrong for a Hindu Nationalist or Hindu to eat beef/cow, chicken, goat, or other meat?\n\nWould Akhand Bharat be fully vegetarian? [https://translate.google.com/](https://translate.google.com/)
709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Jai shree Ram 
711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hindus are pushing back against any drivel floating from Hollywood and Oppenheimer is a good example. \n\nThere's a scene in this movie which shows a man and a woman making out while a Bhagwad Gita verse plays out in the background! Would you ever have a physical relationship with a holy book or morrti placed nearby? You may like to watch this video! [https://youtu.be/6YnoP27hG4I](https://youtu.be/6YnoP27hG4I)
716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Taking some creative liberty to make Oppenheimer
720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I came across a profile spewing hatred against Hindus, the perpetrator is a resident of Mumbai according to his Instagram. Can someone please assist in filling a FIR.. I'll extend all support possible
747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There seems to be a lot of mixed messages behind whether or not Bollywood is Pro-Hindu or Anti-Hindu? Would you say that Bollywood does a lot to promote Hinduism in a positive light or does Bollywood not do that and show other religions in a more positive light? Which Bollywood celebrities are the best promoters of Hinduism?
751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \n\n**Introduction**\n\nAs we approach the much-awaited festival of Diwali in 2023, the excitement and anticipation in the air are palpable. Diwali, also known as Deepavali, is a celebration of light, triumph, and the victory of good over evil. This year, Diwali falls on the 19th of October, and it's the perfect occasion to not only deepen our spiritual connections but also to decorate our homes with creativity and finesse. In this blog, we'll explore the causes and significance of celebrating Diwali in 2023 while providing you with some delightful **Diwali decoration ideas**.\n\n**The Significance of Diwali 2023**\n\n**1. Spiritual Renewal**: Diwali is a time for spiritual introspection and renewal. It marks the return of Lord Rama to Ayodhya after defeating Ravana, symbolizing the triumph of righteousness. Devotees light lamps (diyas) and candles to dispel ignorance and seek spiritual growth.\n\n**2. Cultural Unity:** Diwali transcends religious boundaries. It's celebrated by people of various faiths and backgrounds, fostering cultural unity and social harmony. In a diverse country like India, Diwali brings communities together.\n\n**3. Family Bonding:** Diwali is all about strengthening familial bonds. Families clean and decorate their homes, exchange gifts, and share delicious meals. It's a time for togetherness and love.\n\n**4. Economic Significance**: The festival is economically significant, kick-starting the festive season. Businesses offer special discounts and promotions, leading to increased consumer spending. It's a win-win for both consumers and businesses.\n\n**5. Symbol of Hope:** Diwali signifies the triumph of hope over despair. It reminds us that even in challenging times, there's the potential for positive change and the emergence of light and goodness.\n\n**Diwali Decoration Ideas**\n\nNow that we understand the causes and significance of celebrating [**Diwali in 2023**](https://www.pujanpujari.com/happy-diwali-2023/), let's dive into some creative decoration ideas to make your home shine with joy:\n\n**1. Rangoli Art:** Create beautiful rangoli designs at your doorstep using colored powders, rice, or flower petals. These intricate patterns not only welcome guests but also add a touch of tradition to your decor.\n\n**2. Diyas and Candles**: Diwali is all about lighting up the darkness. Decorate your home with an array of diyas (clay lamps) and scented candles. Place them on windowsills, balconies, and around the house to create a warm and inviting atmosphere.\n\n**3. String Lights:** Hang string lights in various colors and shapes to illuminate your home. They can be wrapped around pillars, or staircases, or hung from the ceiling to add a festive touch.\n\n**4. Floral Decor:** Fresh flowers bring a natural and vibrant element to your Diwali decor. Arrange marigold garlands, lotus blooms, and rose petals in decorative vases or as wall hangings.\n\n**5. Torans and Bandhanwars:** Adorn your doorways with torans (door hangings) and bandhanwars (door garlands). These decorative pieces are considered auspicious and add a traditional flair to your entrance.\n\n**6. Artistic Wall Hangings:** Invest in or create artistic wall hangings that depict scenes from the Ramayana or feature intricate designs. These can be made of metal, wood, or fabric and serve as excellent conversation starters.\n\n**7. Table Centerpieces:** For your dining table, consider a stunning centerpiece with flowers, candles, or a combination of both. It not only enhances your decor but also creates a memorable dining experience.\n\n**8. Themed Decor:** Go for a theme-based decor approach. You can choose from traditional, contemporary, or even fusion themes to give your home a unique look.\n\n**Conclusion**\n\nDiwali 2023 is a time to celebrate the victory of light over darkness, good over evil, and hope over despair. The causes and significance of this festival are deeply rooted in spirituality, culture, and unity. As we prepare to celebrate on the 19th of October, let's embrace the joyous spirit of Diwali by decorating our homes with love and creativity. Explore the vibrant collection of Diwali decorations on **PujaNpujari**, and may your Diwali be filled with light, love, and laughter. Happy Diwali!\n\n[Happy Diwali](https://preview.redd.it/bttjyxpovynb1.jpg?width=1024&amp;format=pjpg&amp;auto=webp&amp;s=4289f5690cdff83c54a187c61a0d4cb846818489)
767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Great
771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Where can I learn more about the key focus areas of RSS for the next 3 years? \n\nWhat are the problems it thinks our society is facing, what initiatives it is planning to solve them? \n\nI am trying to build a startup on Hindutva revival and was looking for RSS perspective on it.
780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In recent times, concerning videos have surfaced, propagating distressing calls for the mass genocide of the Brahmin and Kshatriya communities in Nepal. These videos espouse xenophobic ideologies aimed at inciting hostility towards these communities, with a sinister aim to mobilize others and exclude them. Shockingly, some instances have been documented where cattle, including cows and oxen, symbolic animals in Nepal, have been slaughtered in various locations, with these acts disturbingly celebrated as achievements.\n\nWhat is even more disconcerting is the apparent lack of response from the current government, which is predominantly comprised of members from the Communist party. This silence in the face of such provocations has led to escalating tensions and outbreaks of violence in multiple regions. It's particularly unsettling that these videos and ideologies have even seeped into the parliamentary discussions, with no substantial stance being taken to condemn these actions.\n\nOne possible explanation for this muted response could be the intricate ties between the government and these very communities that are being targeted. Given that these communities form a significant portion of their voter base, the government might be hesitant to address this issue head-on.\n\nThe situation has further escalated with the emergence of various paramilitary groups and factions within Nepal, advocating for armed revolution. This alarming trend underscores the urgency of addressing these divisive videos and their aftermath before they lead to further social unrest and turmoil within the nation. It's crucial for the government and the authorities to recognize the potential consequences of their inaction and take appropriate measures to ensure the safety, harmony, and unity of Nepal's diverse population\n\nhttps://reddit.com/link/161wex4/video/upif8sp9rgkb1/player
806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So I am a Zen/Dhyan Buddhist (Mahayana) and I confirm that Buddha was not some symbol for "dalit pride", he was a symbol of humanity and enlightenment. He was from a high caste family but rejected every kind of discrimination in existence. He is the pride of Indian culture and probably the greatest human ever to walk on earth. Bhim gang thinks they can hijack Buddhism by siding with barbaric radical islamists....WE NEED TO STOP THEM. Rise my fellow traditionalist Buddhists!!
826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \0270M5 9H =ª<û
830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Years of Islamic Rule, 200 years of British Rule, years of Congress rule and years of leftist subversion. Hey Bharatvasi! How long will you tolerate? The discrimination against your own culture? The injustice, the teaching of altered history, hiding of truth and covering them with fabricated lies. \n\nRemember the great warriors, Maharana of the West, Cholas of the South, Maratha's son Chhatrapati Shivaji Maharaj, Ahoms of the east, Shashanka of Bengal, Maurya, Gupta, Magadha, Chanakya, Rashtrakutas, Gandhaar. \n\nRemember the battle of kurukshetra and the battle of shree Ram. \n\nRemember the Bengal tiger Netaji Subhash Chandra Bose who went to Russia, Germany , Japan all alone and organised an army to fight the British. Remember Khudiram Bose, Bhagat Singh, Veer Savarkar.\n\nThis is the land that produced these people. Be proud and wonder how your ancestors managed to protect your religion and culture right from the Vedic period despite several attempts to destroy it.\n\nBharat is not only a nation but an emotion. As your child, O mother! I am ready to lose my life to get rid of all enemies both external and internal that pose a threat to you. I will fight till my last breathe. Oh Bharat Mata! Your Blessings are all I ask for. Let not the fire extinguish. We shall rise once more.\n\nJai Hind. \n\nJai Bharat
831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Bengali page, Bangladeshi page on Instagram\n@Benga1sultanate, is a hardcore islamist and Hindu hater. I was in a voice call with him and he was saying he wants to murder Hindu babies, kill hindus in Bangladesh for fun and rape Hindu women.\n\nI was pretending to be a Hindu turned Muslim convert or revert as they say? And they let me in on their secret.\nThat this page was created as a dawah page to convert Hindus to Islam.\n\nAnd they have secret Muslim group chats and bully hindus who come into the comment section of benga1sultanate. He is a 22 year old Dhaka Bangladeshi called Niloy who lives in new York with extreme Hindu hatred.\n\nHis purpose of that account, is to convert Hindus to Islam. And he was like to me inshallah by force we will do ghazwa e hind in India and kill all. Hindus. He wants to make islamic videos and content and force convert Hindus to Muslims. A. Few 17-18 year old Hindu Bengalis dmed me crying saying benga1sultanate Is bullying them to become Muslim. He himself sent a picture of me with baby Krishna killing a cow. And sending videos of eating beef saying eating Hindus mother\n\nIs there a way we could take this fascist page down? If all of us report and spread this.. it would be good.. it must be circulated and that fascist page against Hindus must be removed\n\n\nI am a Bengali Hindu from London. \n\nAll of us Hindus must stay united and be fearless regarding real life threats and in this case, virtual threats like Niloy running @benga1sultanate  on Instagram.\n\nThank you.
838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Jai shree ram
854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 https://youtu.be/SXU0I9vMgkA?si=xYnjUMiUmAX7wle3
857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is clip should be circulated far and wide
860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So in USA, Los Angeles, California , an elderly Muslim Pro Palestinian College Computer Science professor, Loay Alnaji, hits a Pro Israeli Jewish elderly man, Paul Kessler, with a Microphone, <¤ ...as a result, Paul died bleeding from head injuries...but Pro Palestinians in the comment sections were feeling bad for the microphone <¤ \n\nI'm an Exmuslim from Bangladesh...I know what I'm talking about.... Bangladesh is slowly turning into Pakistan Afghanistan...India is the only hope for not only Sanatani Hindus but for all remaining non-Muslims....there are many other non Muslims in India...but no other religion is as problematic as Islam....India needs to be turned into a Hidnu Rastra officially ASAP otherwise Humanity is doomed...\n\nWake up people! Muslims have NO EMPATHY FOR NON MUSLIMS NO RATIONAL BRAIN CELLS TO ARGUE WITH OTHER NON MUSLIMS THEY WANT TO KILL ALL NON MUSLIMS... YOU CAN NOT REASON WITH PEOPLE WHO WANTS TO SIMPLY KILL YOU! WITHOUT ANY LOGIC...\n\nif you don't take any lawful and witty actions against these problematic Muslims in your local areas now, then your family and loved ones will be killed, raped and burned alive by these senseless animals in the future and you can't do anything about it...just like 800 years ago many Hindu Indian ancestors sacrificed their lives during the Islamic invasions
861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Please watch these videos to get information regarding future outcomes of India and the world and how it will impact Bharat \n\nMukesh Vats predictions are about Kalki Avatar and how Hindu Rastra will be established\n\n1) https://youtu.be/quzxq4QMGBg?si=5Tdlt8E1Fbqvdfsk\n\nConversation with Psychic : Intro Mukesh Vats \n\n2) https://youtu.be/U3_sK5Xoikc?si=DDSzph2xcyDeY4eP\n\nRevelation of Psychic : Part 1 Mukesh Vats \n\n3) https://youtu.be/ynylFRgCLbg?si=_FNMSLcf8R7Rk76-\n\nRevelation of Psychic : Part 2 Mukesh Vats \n\n4) https://youtu.be/oal-iCw-Rxs?si=Aze8nx8hrsnKM5Sc\n\nRevelation of Psychic : Part 3 Mukesh Vats \n\n5)\nhttps://youtu.be/tVJ71NVarlk?si=pHpx_hqJlSf7K3Fm\n\nRevelation of Psychic : Part 4 Mukesh Vats \n\n6)\nhttps://youtu.be/b6shN0OZOvY?si=-Cy9S8B_s9mrUJ9J\n\nRevelation of Psychic : Part 5 Mukesh Vats \n\n7)\nhttps://youtu.be/u3rTs7-t3SU?si=Zc9sc3S0ZazWfxjG\n\nDharm Yuddh : Neptune in Pisces S=\037 : Part 1 Mukesh Vats \n\n8)\nhttps://youtu.be/vUB-1v8tcIs?si=zl8gj8-zY-55lReu\n\nDharm Yuddh : Neptune in Pisces S=\037 : Part 2\nMukesh Vats\n\n9)\nhttps://youtu.be/-ZKx2ytysmI?si=s61ZAgZl2LoPcvi0\n\nBhavishay Malika Revelations : Part 1 Mukesh Vats \n\n10)\nhttps://youtu.be/NVJyklQj4Ec?si=jD2wLCN9Fi7c_Ssr\n\nBhavishay Malika Revelations : Part 2 Mukesh Vats \n\n11)\nhttps://youtu.be/UHHiG7xzkxg?si=72qMn-KNB8LcExG6\n\nUnrest in Muslim World : Dharm Yuddh Kalki Avatar Mukesh Vats \n\n12)\nhttps://youtu.be/DHObai9pGgo?si=us49XpNw9GxfXXZp\n\nRescuing Shiva Temple : which was Built before Gyan Bapi Mosque Mukesh Vats \n\n13) \nhttps://youtu.be/2dA2nDka6fc?si=wAW701_4hLwObNNx\n\nNupur Sharma and Jihadists Mukesh Vats \n\n14)\nhttps://youtu.be/F03jM9_bnws?si=VT9HGkUn3mMWdiyE\n\nSushant Singh Rajput Murdered by Khans in Bollywood Mukesh Vats \n\n15)\nhttps://youtu.be/kwFED6asC8w?si=8cVNpbdc0U7iowSF\n\nYati Narsinganand Saraswati on Dharm Yuddh\n\n16)\nhttps://youtu.be/KjB6oS92zrM?si=oN5TDWgT1gybSw1C\n\nCorrupted Bollywood Drugged Actors destroying Hindu Youth \n\n17) https://youtu.be/gByTgRwFKYg?si=5gMRU6eY4LCEaEPA\n\nShri Nirmala Devi Mataji on the Arrival of the Kalki Avatar \n\n18)\nhttps://youtu.be/5BFjrcopBc8?si=_lshQeflfTp2Fr0v\n\nK the last warrior : Kali yuga System \n\n19)\nhttps://youtu.be/oFBrLc0zlgQ?si=6df0b2Kcvj2_MfmZ\n\nShri Nirmala Devi Mataji on the Arrival of Kalki Avatar : Part 2 : Morgan's world \n\n20)\nhttps://youtu.be/pfBe5kU_Y_g?si=3w5jwR2pk6YGaRDZ\n\nK the last warrior : American Psychic Florence Nightingale on the arrival of the Kalki Avatar Part 1 \n\n21)\nhttps://youtu.be/YY6SBMn5RuQ?si=TtVv5Ctr_5SfgiWD\n\nK the last warrior : American Psychic Florence Nightingale on the arrival of the Kalki Avatar Part 2\n\n22)\nhttps://youtu.be/PprXHj_HXNk?si=mN9Nd-vPJwTyXoGL\n\nDharm Yuddh: Upcoming Nuclear disaster Mukesh Vats\n\n23) https://youtu.be/fnRgNqld5cQ?si=Rgao1HR2v5BA37vc\n\nKali Yuga Ending : Achariya Salil \n\n24) https://youtu.be/HpjJ3B_qUzs?si=zqF3m91uZIVdAKa2\n\nYati Narsinganand Saraswati Sadhna
862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Osho kya yr . . .
870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
871  \n\nLet me share some of my experience : My journey of becoming exmuslim Vedic Santana Hindu might be very odd to some who are reading this. Unfortunately, I'm not Indian. I'm from Bangladesh. The environment of Bangladesh is sooo utterly toxic...it's like worse than Afghanistan and Pakistan. 95% Muslim and even the liberal and moderate Ahmadi and Sufi Muslims can't get spared these days from the local extremist who are overly emotional and highly violent, low IQ and coward Zakir Naik fans. From the Early Childhood I was very liberal Muslim. I even ate Coconut Prasad of pujas, celebrated Christmas and even enjoyed Buhhist lantern <îMaghi purnima festival..It was a great childhood... however I sneaked in Everytime my parents didn't know, if they knew they would never have allowed me to go to such festivals... However I didn't really like Eid as much... especially Eid ul Azha where animals are Slaughtered...I always thought it was extremely cruel to kill cows like that....I still remember one eidul Azha I was only 5 years old, where I saw from my window a cow crying in fear =- and suddenly I felt something in my heart I was so sad ="...it was so cruel they way the butcher just slit the throat...I always thought it was extremely Barbaric....and I also thought Eid ul Fitr was a punishment like seriously how is it even possible to even survive like without eating or drinking...its maybe bearable in equator but what happens in polar region countries...didnt made sense ... Sounded stupid....Obviously everything started to change when Zakir Naik stepped in... people started to become less and less tolerant and more violent it seemed...and made it more worse, my dad was a born extremist...even though rest of my Uncle and aunt were liberal Muslim...my dad was a born extremist...not only that he even had sex with a prostitute and almost had a kid and was about to second marry...like I still hate him...He hates India with passion...calls Hindus 'Malaun'.. really bad word...zero tolerance of anything.. totally opposite of me...then hopefully thanks to my uncle my family got a Chance to get into USA...I'm still studying in USA however college changed my entire perspective on religion...after taking Evolutionary biology class I become Exmuslim, I went extremely deep into Muslim teaching and I still remember, I said to myself 'Allah is devil ? He wants all dead? Even his most loyal Angel?' I was shaking in fear in my college bathroom, I felt so hopeless ...like is there no one who is gonna fight this evil ? then I became still somewhat Agnostic, then Atheist then Spiritual and studying upon other Western and Eastern religions I became a Hindu...or at least I started to learn more about Santana Vedic principals and reincarnation and all philosophical and spiritual matters in a logical and scientific way and it made me more sense than any other manmade abrahamic religions. It took me 5 years for this transition and come into a solid conclusion after knowing about Mahabharata, ramayana, Puranas, Vedas, Astrology and History of how Arabs invaded the Gazwe Hind and killed millions of Non Muslims... Truly Mohammed was a Asur....Kali Asur extremely well trained by Guru Shukrachariya... demonically possessed man..war mongering raping killing genociding ...no wonder his followers are like that...In Hinduism I find hope in this Kali yuga that Kalki will come back to end this evil... Santana dharma is all about eternal Moksha from reincarnation...Only karna was able to achieve Moksha from Krishna for his kind hearted deeds ( Karma ) , Karma is Dharma in Santana...thats why Soul is purified with fire =% after death, if the body is not burned, it will become a vessel for demonic possession...Jinns in Islam are nothing but really evil Pretas who did not achieve Moksha from this realm..their bad Karma brought them down...good karma will elevate you...the goal of Kali Asur is to bring down all humanity with their bad Karma ...they call it Sins in Christianity... Christianity is not that far away from Santana dharma...evil anti Christ Kali Asur Vatican in Italy hides 80% of the real truth of the knowledge of the Saint Yashua ( he was a Vedic Saint Guru wanted to teach Barbaric Romans about Santana dharma but obviously it didn't go well )...today's Christians knows nothing about it....the goal of this Kali Asur and it's followers is to wreck havoc in this realm...\n\nI highly encourage and advice all Hindus around the world please stay safe, Most Muslim countries do not like Indians at all , not even some Exmuslims and Atheists and please send and teach your children in Vedic Gurukul or Teach them Gita, Astrology ( astrology helps from dangers ) , all 4 Vedas, Upanishads, Shlokas, Mahabharata, Ramayana, Puranas etc. Because I have seen children of some devotee becoming exhindu...later on they become the perfect target for Muslims ( Maleccha )...the caste system was not in Vedic Santana dharma at all, it was created in Kali yuga, in order to decieve people to stray away from actual Santana dharma..divide and rule policy...there was Varna which is definitely not a Caste system...teach your children to become proud of Santana dharma so that they can fight back Maleccha Zakir Naik influence....Many Hollywood Celebrities are proudly becoming Hindu ...Hindus should learn how to fight back effectively against Secular influence in India.\n\nWhenever I am depressed I always listen to problem solving mantra of Shiva and Narayana and listen to Hanuman Chalisa\n\nI currently live with my family...they disgust me...they hate all non Muslims...I just have to pretend that I'm Muslim otherwise my father will Honor kill me ...lmao where is the honor on killing your own children? This is what a follower of a Kali Asur ( Maleccha ) looks like... I once went to an astrologer, she told me that I have Ma Parvati and Ma Durga strength and energy to face any evil...I wish to remain in harmony with my parents without being find out...however there is always fighting going on in my household.
872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Namaste Har Har Mahadev Jai Shree Krishna, I recently made a post on wrong Hinduism subreddit...I should have posted it on here this sub reddit instead...It was my fault, I wasn't aware of such guidelines...the rules were that I wasn't allowed to post anything political...it was political so I hope I will be allowed to be posted on here....\n\nI can't copy paste it here since it was removed but I can send pictures and links \n\nThe link : \n\nhttps://youtu.be/kwFED6asC8w?si=UVAm3Rw2C2ecuSs8
873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Warrior karna
876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pranaam Hindus of Reddit, I am building **an app Sansearch** which provides an easy to way to **interact with our beloved devatas and devis through their beautiful images and their shloka.**\n\nYou can get shlokas daily as notifications so that you can stay connected to your favourite deity. Change themes to your favourite images and share these shloka with the ones you love.\n\n**Please give your love and blessing to this app** by downloading it, using it and giving your reviews on Google Play Store. App Store launching soon. **Your feedback is very important for me as I am a solo developer working on this.**\n\n[https://play.google.com/store/apps/details?id=com.thisisashukla.sansandroid&amp;hl=en-IN](https://play.google.com/store/apps/details?id=com.thisisashukla.sansandroid&amp;hl=en-IN)
878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                >\u0097>A>\u0094(
884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This episode is about Bhisma pratigya, please let me know what you think about it and if you have any suggestions...
899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _**The following is [a series of tweets by @suyashjha_](https://x.com/suyashjha_/status/1708785817366278429?s=20) where he mentions a few problems with the recent caste census in Bihar please read the whole thing and see the images when marked and then comment**_\n\n\nI can't understand why people are even seriously considering these numbers. They are on your face sham. SC population of Bihar was 15.91% in Census 2011. \n\nAre you seriously believing that their share in population increased by as much as 23.6% in 12 years to come to 19.65%.\n\nIn absolute terms, you are contending that SC population increased from 1,65,67,325 to about 2,41,85,809 in 12 years. That is an additional 76 lakh people in 12 years. It simply doesn't add up with the declining TFR in the state.\n\nBetween 2001 and 2011, despite a much higher TFR in the state, the SC population as a proportion increased by only 0.2%, from 15.7% to 15.9%.\n\nThe survey numbers are off by a mile.\n\nWhile census data is not available for OBCs since 1931. It can indirectly be deduced that the numbers have been similarly inflated.\n\nAccording to NSSO 61st Round, the OBC pop of Bihar was around 59.7%. (that survey had also greatly overestimated SC pop at 22%) {see 1 one}\n\nThe current survey inflates even that number to arrive at OBC pop of 63.1%. Increase of 3.4% in 18 years. \n\nBoth the OBC and SC pop seem to have been inflated in the range of 3-4% each and GEN pop deflated by 7-8% "at least". Goes well with politics of certain parties.\n\nAt the same time, Muslim estimates have kept largely in line with Census data. Again pretty convenient as no undue inflation in M pop goes well with the politics of certain parties.\n\nIn short\nSC stats inflate over census\nMuslim stats match census\nOBC stats inflate over NSS data\n\nSome come up with the argument that there is significant differential in TFR of General and SC categories, then here is the data from NHFS-5 on social group based TFR. The differential is only 0.3 at national level. I am sure that it will be even less in Bihar. {See image 2}\n\nEven if the difference were 0.5 or 0.6 in Bihar, the huge fluctuation in population of SCs is still unexplainable.\nMuslims whose TFR was 0.6 &amp; 0.4 more than Hindus in 2001 &amp; 2011, grew only by 1.2%, while SCs whose TFR was similarly higher than GEN if not less grew by 3.93%? SHAM\n\nHave come across state level NHFS data of Bihar which shows that indeed there is a significant TFR difference between SC and Others. However, the difference has been converging which again shows that it is absurd that the SC pop grew 3.74% in 12 years b/w 2011 and 2023.  {see image 3 and 4}\n\nAt the same time, the above data also shows that there is hardly any significant difference between OBC and General TFR to create the kind of divergence in populations as has been suggested by the survey.\n\nNo half decent scientific survey will through up such hogwash numbers which neither talk with Census data, nor NHFS data, nor surveys by private orgs like CSDS. It needs to be ruthlessly slammed.  {see image 5}\n\n{Reply to inclusion of new castes in the category}\n\nKlounery' is not knowing what you are talking about. The list of castes under SC category has remained the same in Bihar since at least 01. Only additions been done are some odd synonyms of caste names which are hardly carried by a few thousand people.\n[https://socialjustice.gov.in/common/76750](https://socialjustice.gov.in/common/76750)\n\n{See image 6}
907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I am a hindu from indonesia, a tamil but my grandma is chinese, i born here too\n\nIn indonesia there are 2 problems\n\n1. how to create new temple, creating new temple is quite difficult here but not impossible especially if you have the "money" if you know what i mean\n\n2. The blasphemy law, the blasphemy law mostly target the minority here but sometime the balinese hindu use it to their advantage\n\nBut overall indonesia is quite tolerant\n\nbut i think kashmiri muslim is more tolerant than indonesian muslim especially since they have no problem acceding to hindu majority india\n\nThe biggest problems here is criminality \n\nMuslim girl here would have no problem dating non muslim but the problem lies in their family when they want to go to marriage
915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
        subreddit comments
1   HindutvaRises        3
2   HindutvaRises        7
3   HindutvaRises        9
4   HindutvaRises        0
5   HindutvaRises       79
6   HindutvaRises        4
7   HindutvaRises        0
8   HindutvaRises       16
9   HindutvaRises        2
10  HindutvaRises        7
11  HindutvaRises       24
12  HindutvaRises       10
13  HindutvaRises        3
14  HindutvaRises        0
15  HindutvaRises        3
16  HindutvaRises        2
17  HindutvaRises        3
18  HindutvaRises       12
19  HindutvaRises        6
20  HindutvaRises        3
21  HindutvaRises        2
22  HindutvaRises       17
23  HindutvaRises        0
24  HindutvaRises        5
25  HindutvaRises        4
26  HindutvaRises        0
27  HindutvaRises       13
28  HindutvaRises        1
29  HindutvaRises        1
30  HindutvaRises        1
31  HindutvaRises        0
32  HindutvaRises        0
33  HindutvaRises        4
34  HindutvaRises        2
35  HindutvaRises       17
36  HindutvaRises        1
37  HindutvaRises        3
38  HindutvaRises        0
39  HindutvaRises        2
40  HindutvaRises        4
41  HindutvaRises       23
42  HindutvaRises        0
43  HindutvaRises       12
44  HindutvaRises        2
45  HindutvaRises        7
46  HindutvaRises       32
47  HindutvaRises       10
48  HindutvaRises        4
49  HindutvaRises       26
50  HindutvaRises       31
51  HindutvaRises        9
52  HindutvaRises       11
53  HindutvaRises        5
54  HindutvaRises       13
55  HindutvaRises        6
56  HindutvaRises        8
57  HindutvaRises        9
58  HindutvaRises        0
59  HindutvaRises        1
60  HindutvaRises        2
61  HindutvaRises        8
62  HindutvaRises        4
63  HindutvaRises        1
64  HindutvaRises       10
65  HindutvaRises        8
66  HindutvaRises       12
67  HindutvaRises       13
68  HindutvaRises        0
69  HindutvaRises       18
70  HindutvaRises        0
71  HindutvaRises        0
72  HindutvaRises        0
73  HindutvaRises       26
74  HindutvaRises        2
75  HindutvaRises        9
76  HindutvaRises       34
77  HindutvaRises        0
78  HindutvaRises        5
79  HindutvaRises        5
80  HindutvaRises        7
81  HindutvaRises        2
82  HindutvaRises       57
83  HindutvaRises       13
84  HindutvaRises        3
85  HindutvaRises        6
86  HindutvaRises        8
87  HindutvaRises        5
88  HindutvaRises        0
89  HindutvaRises       12
90  HindutvaRises        3
91  HindutvaRises       14
92  HindutvaRises        0
93  HindutvaRises       13
94  HindutvaRises        2
95  HindutvaRises        5
96  HindutvaRises        1
97  HindutvaRises        0
98  HindutvaRises        5
99  HindutvaRises        3
100 HindutvaRises        0
101 HindutvaRises        1
102 HindutvaRises        0
103 HindutvaRises        0
104 HindutvaRises        2
105 HindutvaRises        1
106 HindutvaRises       14
107 HindutvaRises        8
108 HindutvaRises        2
109 HindutvaRises        1
110 HindutvaRises       20
111 HindutvaRises        1
112 HindutvaRises        1
113 HindutvaRises        9
114 HindutvaRises        4
115 HindutvaRises        6
116 HindutvaRises        7
117 HindutvaRises       15
118 HindutvaRises        8
119 HindutvaRises        4
120 HindutvaRises        5
121 HindutvaRises        2
122 HindutvaRises        4
123 HindutvaRises        3
124 HindutvaRises        1
125 HindutvaRises        5
126 HindutvaRises        5
127 HindutvaRises        0
128 HindutvaRises        1
129 HindutvaRises        6
130 HindutvaRises        4
131 HindutvaRises        5
132 HindutvaRises        2
133 HindutvaRises        1
134 HindutvaRises        7
135 HindutvaRises        2
136 HindutvaRises        0
137 HindutvaRises        4
138 HindutvaRises        9
139 HindutvaRises        0
140 HindutvaRises        0
141 HindutvaRises        0
142 HindutvaRises        0
143 HindutvaRises        0
144 HindutvaRises        1
145 HindutvaRises        0
146 HindutvaRises        2
147 HindutvaRises        1
148 HindutvaRises        0
149 HindutvaRises        0
150 HindutvaRises       12
151 HindutvaRises        3
152 HindutvaRises        0
153 HindutvaRises       18
154 HindutvaRises        0
155 HindutvaRises        0
156 HindutvaRises        0
157 HindutvaRises       10
158 HindutvaRises        0
159 HindutvaRises        2
160 HindutvaRises        0
161 HindutvaRises        1
162 HindutvaRises        1
163 HindutvaRises        0
164 HindutvaRises        0
165 HindutvaRises        1
166 HindutvaRises        2
167 HindutvaRises        0
168 HindutvaRises        0
169 HindutvaRises        2
170 HindutvaRises        0
171 HindutvaRises        2
172 HindutvaRises        0
173 HindutvaRises        8
174 HindutvaRises       12
175 HindutvaRises        5
176 HindutvaRises        7
177 HindutvaRises        1
178 HindutvaRises       11
179 HindutvaRises       24
180 HindutvaRises        9
181 HindutvaRises        5
182 HindutvaRises       39
183 HindutvaRises        5
184 HindutvaRises        9
185 HindutvaRises        1
186 HindutvaRises        6
187 HindutvaRises        4
188 HindutvaRises        0
189 HindutvaRises        1
190 HindutvaRises        0
191 HindutvaRises      159
192 HindutvaRises        9
193 HindutvaRises        2
194 HindutvaRises       15
195 HindutvaRises        3
196 HindutvaRises        0
197 HindutvaRises        0
198 HindutvaRises        5
199 HindutvaRises        4
200 HindutvaRises       11
201 HindutvaRises        3
202 HindutvaRises       26
203 HindutvaRises       13
204 HindutvaRises        4
205 HindutvaRises       13
206 HindutvaRises       13
207 HindutvaRises       16
208 HindutvaRises        0
209 HindutvaRises        9
210 HindutvaRises        9
211 HindutvaRises       24
212 HindutvaRises        3
213 HindutvaRises        3
214 HindutvaRises        8
215 HindutvaRises       15
216 HindutvaRises        0
217 HindutvaRises        4
218 HindutvaRises        6
219 HindutvaRises        6
220 HindutvaRises        0
221 HindutvaRises        4
222 HindutvaRises        4
223 HindutvaRises        0
224 HindutvaRises        0
225 HindutvaRises        0
226 HindutvaRises        0
227 HindutvaRises        0
228 HindutvaRises        1
229 HindutvaRises        3
230 HindutvaRises        0
231 HindutvaRises        0
232 HindutvaRises        4
233 HindutvaRises        0
234 HindutvaRises        0
235 HindutvaRises        0
236 HindutvaRises        1
237 HindutvaRises        1
238 HindutvaRises        1
239 HindutvaRises        3
240 HindutvaRises        0
241 HindutvaRises        0
242 HindutvaRises        1
243 HindutvaRises        3
244 HindutvaRises        0
245 HindutvaRises        8
246 HindutvaRises        1
247 HindutvaRises        0
248 HindutvaRises        0
249 HindutvaRises        1
250 HindutvaRises        0
251 HindutvaRises        0
252 HindutvaRises        0
253 HindutvaRises        0
254 HindutvaRises        0
255 HindutvaRises        1
256 HindutvaRises        2
257 HindutvaRises        0
258 HindutvaRises       10
259 HindutvaRises        0
260 HindutvaRises       27
261 HindutvaRises        0
262 HindutvaRises        0
263 HindutvaRises        0
264 HindutvaRises        2
265 HindutvaRises        0
266 HindutvaRises        0
267 HindutvaRises        1
268 HindutvaRises        2
269 HindutvaRises        1
270 HindutvaRises        0
271 HindutvaRises        0
272 HindutvaRises        0
273 HindutvaRises        0
274 HindutvaRises        0
275 HindutvaRises        0
276 HindutvaRises        0
277 HindutvaRises        5
278 HindutvaRises        3
279 HindutvaRises        0
280 HindutvaRises        1
281 HindutvaRises        1
282 HindutvaRises        2
283 HindutvaRises        1
284 HindutvaRises        0
285 HindutvaRises        0
286 HindutvaRises        0
287 HindutvaRises        1
288 HindutvaRises        0
289 HindutvaRises        0
290 HindutvaRises        1
291 HindutvaRises        0
292 HindutvaRises        0
293 HindutvaRises        1
294 HindutvaRises        0
295 HindutvaRises        0
296 HindutvaRises        0
297 HindutvaRises        8
298 HindutvaRises        0
299 HindutvaRises        0
300 HindutvaRises        1
301 HindutvaRises        1
302 HindutvaRises        0
303 HindutvaRises        0
304 HindutvaRises        1
305 HindutvaRises        0
306 HindutvaRises       24
307 HindutvaRises        0
308 HindutvaRises        3
309 HindutvaRises        0
310 HindutvaRises        0
311 HindutvaRises        5
312 HindutvaRises        0
313 HindutvaRises        0
314 HindutvaRises        0
315 HindutvaRises        1
316 HindutvaRises        0
317 HindutvaRises        0
318 HindutvaRises        0
319 HindutvaRises       19
320 HindutvaRises        3
321 HindutvaRises        0
322 HindutvaRises        8
323 HindutvaRises        2
324 HindutvaRises        0
325 HindutvaRises        1
326 HindutvaRises        1
327 HindutvaRises        1
328 HindutvaRises        1
329 HindutvaRises        1
330 HindutvaRises        1
331 HindutvaRises        1
332 HindutvaRises        3
333 HindutvaRises        2
334 HindutvaRises        1
335 HindutvaRises        1
336 HindutvaRises        2
337 HindutvaRises        1
338 HindutvaRises        1
339 HindutvaRises       40
340 HindutvaRises        1
341 HindutvaRises        3
342 HindutvaRises        1
343 HindutvaRises        1
344 HindutvaRises        1
345 HindutvaRises        1
346 HindutvaRises        2
347 HindutvaRises        1
348 HindutvaRises        3
349 HindutvaRises        3
350 HindutvaRises        1
351 HindutvaRises        1
352 HindutvaRises        4
353 HindutvaRises        1
354 HindutvaRises        1
355 HindutvaRises        2
356 HindutvaRises        2
357 HindutvaRises        1
358 HindutvaRises        1
359 HindutvaRises        3
360 HindutvaRises        1
361 HindutvaRises        1
362 HindutvaRises        1
363 HindutvaRises        1
364 HindutvaRises        9
365 HindutvaRises        5
366 HindutvaRises        2
367 HindutvaRises        2
368 HindutvaRises        1
369 HindutvaRises        1
370 HindutvaRises        1
371 HindutvaRises        1
372 HindutvaRises        1
373 HindutvaRises        1
374 HindutvaRises        1
375 HindutvaRises        1
376 HindutvaRises        2
377 HindutvaRises        6
378 HindutvaRises        5
379 HindutvaRises        1
380 HindutvaRises        1
381 HindutvaRises        1
382 HindutvaRises        1
383 HindutvaRises        1
384 HindutvaRises        1
385 HindutvaRises        2
386 HindutvaRises        1
387 HindutvaRises        1
388 HindutvaRises        4
389 HindutvaRises        1
390 HindutvaRises        1
391 HindutvaRises        1
392 HindutvaRises        1
393 HindutvaRises        4
394 HindutvaRises        4
395 HindutvaRises        1
396 HindutvaRises        3
397 HindutvaRises        1
398 HindutvaRises        3
399 HindutvaRises        1
400 HindutvaRises        1
401 HindutvaRises        1
402 HindutvaRises        1
403 HindutvaRises        2
404 HindutvaRises        2
405 HindutvaRises        1
406 HindutvaRises        1
407 HindutvaRises        1
408 HindutvaRises        3
409 HindutvaRises        1
410 HindutvaRises        1
411 HindutvaRises        1
412 HindutvaRises        1
413 HindutvaRises        1
414 HindutvaRises        4
415 HindutvaRises        2
416 HindutvaRises       15
417 HindutvaRises        1
418 HindutvaRises        2
419 HindutvaRises        1
420 HindutvaRises        1
421 HindutvaRises        2
422 HindutvaRises        8
423 HindutvaRises        1
424 HindutvaRises        0
425 HindutvaRises        2
426 HindutvaRises        2
427 HindutvaRises        3
428 HindutvaRises        1
429 HindutvaRises        1
430 HindutvaRises        1
431 HindutvaRises        1
432 HindutvaRises        2
433 HindutvaRises        3
434 HindutvaRises        1
435 HindutvaRises        1
436 HindutvaRises        6
437 HindutvaRises        2
438 HindutvaRises        5
439 HindutvaRises        3
440 HindutvaRises        1
441 HindutvaRises        1
442 HindutvaRises       13
443 HindutvaRises        1
444 HindutvaRises       12
445 HindutvaRises        2
446 HindutvaRises        1
447 HindutvaRises        2
448 HindutvaRises        1
449 HindutvaRises        5
450 HindutvaRises        2
451 HindutvaRises        9
452 HindutvaRises        1
453 HindutvaRises        1
454 HindutvaRises        1
455 HindutvaRises        6
456 HindutvaRises        1
457 HindutvaRises        1
458 HindutvaRises        1
459 HindutvaRises        1
460 HindutvaRises        1
461 HindutvaRises        1
462 HindutvaRises        2
463 HindutvaRises       15
464 HindutvaRises        1
465 HindutvaRises        1
466 HindutvaRises        5
467 HindutvaRises        1
468 HindutvaRises        2
469 HindutvaRises        1
470 HindutvaRises        1
471 HindutvaRises        1
472 HindutvaRises        1
473 HindutvaRises        1
474 HindutvaRises        1
475 HindutvaRises        1
476 HindutvaRises        1
477 HindutvaRises        1
478 HindutvaRises        1
479 HindutvaRises        1
480 HindutvaRises        1
481 HindutvaRises        1
482 HindutvaRises        1
483 HindutvaRises        1
484 HindutvaRises        1
485 HindutvaRises        3
486 HindutvaRises        2
487 HindutvaRises        3
488 HindutvaRises        1
489 HindutvaRises        4
490 HindutvaRises        2
491 HindutvaRises        3
492 HindutvaRises        1
493 HindutvaRises        6
494 HindutvaRises        1
495 HindutvaRises       10
496 HindutvaRises        1
497 HindutvaRises        1
498 HindutvaRises        1
499 HindutvaRises        1
500 HindutvaRises        1
501 HindutvaRises        1
502 HindutvaRises        1
503 HindutvaRises        1
504 HindutvaRises        1
505 HindutvaRises        2
506 HindutvaRises        2
507 HindutvaRises        1
508 HindutvaRises        1
509 HindutvaRises        1
510 HindutvaRises        1
511 HindutvaRises        1
512 HindutvaRises        1
513 HindutvaRises       29
514 HindutvaRises        1
515 HindutvaRises        1
516 HindutvaRises        1
517 HindutvaRises        2
518 HindutvaRises        1
519 HindutvaRises        1
520 HindutvaRises        1
521 HindutvaRises        1
522 HindutvaRises        1
523 HindutvaRises        2
524 HindutvaRises        1
525 HindutvaRises        1
526 HindutvaRises        5
527 HindutvaRises        1
528 HindutvaRises        2
529 HindutvaRises        1
530 HindutvaRises        1
531 HindutvaRises        7
532 HindutvaRises        1
533 HindutvaRises        3
534 HindutvaRises        1
535 HindutvaRises        1
536 HindutvaRises        1
537 HindutvaRises        1
538 HindutvaRises        1
539 HindutvaRises        1
540 HindutvaRises        2
541 HindutvaRises        1
542 HindutvaRises        1
543 HindutvaRises        1
544 HindutvaRises        1
545 HindutvaRises        7
546 HindutvaRises        1
547 HindutvaRises        2
548 HindutvaRises        1
549 HindutvaRises        1
550 HindutvaRises        1
551 HindutvaRises        1
552 HindutvaRises        1
553 HindutvaRises        1
554 HindutvaRises        1
555 HindutvaRises        1
556 HindutvaRises        1
557 HindutvaRises        2
558 HindutvaRises        2
559 HindutvaRises        2
560 HindutvaRises        1
561 HindutvaRises        2
562 HindutvaRises        1
563 HindutvaRises        1
564 HindutvaRises       12
565 HindutvaRises        1
566 HindutvaRises        1
567 HindutvaRises        2
568 HindutvaRises        1
569 HindutvaRises        1
570 HindutvaRises        3
571 HindutvaRises        1
572 HindutvaRises        1
573 HindutvaRises        3
574 HindutvaRises        1
575 HindutvaRises        1
576 HindutvaRises        1
577 HindutvaRises        1
578 HindutvaRises        2
579 HindutvaRises        1
580 HindutvaRises        1
581 HindutvaRises        2
582 HindutvaRises        1
583 HindutvaRises        1
584 HindutvaRises        3
585 HindutvaRises        1
586 HindutvaRises        1
587 HindutvaRises        1
588 HindutvaRises        1
589 HindutvaRises        1
590 HindutvaRises        1
591 HindutvaRises        1
592 HindutvaRises        1
593 HindutvaRises        2
594 HindutvaRises        3
595 HindutvaRises        4
596 HindutvaRises        3
597 HindutvaRises        1
598 HindutvaRises        2
599 HindutvaRises        2
600 HindutvaRises        1
601 HindutvaRises        1
602 HindutvaRises        1
603 HindutvaRises        2
604 HindutvaRises        6
605 HindutvaRises        2
606 HindutvaRises        1
607 HindutvaRises        1
608 HindutvaRises        2
609 HindutvaRises        1
610 HindutvaRises        1
611 HindutvaRises       11
612 HindutvaRises        5
613 HindutvaRises        3
614 HindutvaRises        1
615 HindutvaRises        1
616 HindutvaRises        2
617 HindutvaRises        1
618 HindutvaRises        2
619 HindutvaRises        2
620 HindutvaRises        1
621 HindutvaRises        1
622 HindutvaRises        1
623 HindutvaRises        1
624 HindutvaRises        2
625 HindutvaRises        1
626 HindutvaRises        1
627 HindutvaRises        2
628 HindutvaRises        3
629 HindutvaRises        1
630 HindutvaRises        1
631 HindutvaRises        1
632 HindutvaRises        1
633 HindutvaRises        1
634 HindutvaRises        1
635 HindutvaRises        6
636 HindutvaRises        1
637 HindutvaRises        1
638 HindutvaRises        1
639 HindutvaRises        1
640 HindutvaRises        1
641 HindutvaRises        1
642 HindutvaRises        2
643 HindutvaRises        2
644 HindutvaRises        3
645 HindutvaRises        2
646 HindutvaRises        2
647 HindutvaRises        1
648 HindutvaRises        1
649 HindutvaRises        3
650 HindutvaRises        1
651 HindutvaRises        1
652 HindutvaRises        1
653 HindutvaRises        1
654 HindutvaRises        1
655 HindutvaRises        1
656 HindutvaRises        6
657 HindutvaRises        1
658 HindutvaRises        1
659 HindutvaRises        1
660 HindutvaRises        3
661 HindutvaRises        1
662 HindutvaRises        1
663 HindutvaRises        1
664 HindutvaRises        1
665 HindutvaRises        1
666 HindutvaRises        3
667 HindutvaRises        1
668 HindutvaRises        1
669 HindutvaRises        1
670 HindutvaRises        1
671 HindutvaRises        1
672 HindutvaRises        2
673 HindutvaRises        1
674 HindutvaRises        1
675 HindutvaRises        1
676 HindutvaRises        2
677 HindutvaRises        1
678 HindutvaRises        3
679 HindutvaRises        6
680 HindutvaRises        1
681 HindutvaRises        2
682 HindutvaRises        3
683 HindutvaRises        1
684 HindutvaRises        1
685 HindutvaRises        2
686 HindutvaRises        2
687 HindutvaRises        1
688 HindutvaRises        4
689 HindutvaRises        1
690 HindutvaRises        1
691 HindutvaRises        1
692 HindutvaRises        2
693 HindutvaRises        1
694 HindutvaRises        1
695 HindutvaRises        1
696 HindutvaRises        1
697 HindutvaRises        4
698 HindutvaRises        5
699 HindutvaRises        1
700 HindutvaRises        3
701 HindutvaRises        1
702 HindutvaRises        1
703 HindutvaRises        1
704 HindutvaRises        1
705 HindutvaRises        1
706 HindutvaRises        1
707 HindutvaRises        1
708 HindutvaRises        5
709 HindutvaRises        1
710 HindutvaRises        3
711 HindutvaRises        1
712 HindutvaRises        1
713 HindutvaRises        1
714 HindutvaRises        1
715 HindutvaRises        2
716 HindutvaRises        1
717 HindutvaRises        1
718 HindutvaRises        1
719 HindutvaRises        1
720 HindutvaRises        1
721 HindutvaRises        1
722 HindutvaRises        1
723 HindutvaRises        4
724 HindutvaRises        1
725 HindutvaRises        2
726 HindutvaRises        1
727 HindutvaRises        1
728 HindutvaRises        1
729 HindutvaRises        1
730 HindutvaRises        1
731 HindutvaRises        3
732 HindutvaRises        1
733 HindutvaRises        1
734 HindutvaRises        1
735 HindutvaRises        1
736 HindutvaRises        1
737 HindutvaRises        2
738 HindutvaRises        2
739 HindutvaRises        1
740 HindutvaRises        1
741 HindutvaRises        3
742 HindutvaRises        1
743 HindutvaRises        1
744 HindutvaRises        1
745 HindutvaRises        1
746 HindutvaRises        2
747 HindutvaRises        1
748 HindutvaRises        2
749 HindutvaRises        1
750 HindutvaRises        7
751 HindutvaRises        1
752 HindutvaRises        1
753 HindutvaRises        2
754 HindutvaRises        1
755 HindutvaRises        1
756 HindutvaRises        1
757 HindutvaRises        1
758 HindutvaRises        1
759 HindutvaRises        1
760 HindutvaRises        1
761 HindutvaRises        1
762 HindutvaRises        1
763 HindutvaRises        1
764 HindutvaRises        2
765 HindutvaRises        1
766 HindutvaRises        1
767 HindutvaRises        1
768 HindutvaRises        1
769 HindutvaRises        1
770 HindutvaRises        2
771 HindutvaRises        1
772 HindutvaRises        1
773 HindutvaRises        1
774 HindutvaRises        1
775 HindutvaRises        1
776 HindutvaRises        1
777 HindutvaRises        2
778 HindutvaRises        1
779 HindutvaRises        1
780 HindutvaRises        1
781 HindutvaRises        1
782 HindutvaRises        1
783 HindutvaRises        1
784 HindutvaRises        1
785 HindutvaRises        1
786 HindutvaRises        1
787 HindutvaRises        1
788 HindutvaRises        2
789 HindutvaRises        1
790 HindutvaRises        1
791 HindutvaRises        7
792 HindutvaRises        1
793 HindutvaRises        1
794 HindutvaRises        1
795 HindutvaRises        1
796 HindutvaRises        1
797 HindutvaRises        1
798 HindutvaRises        2
799 HindutvaRises        1
800 HindutvaRises        1
801 HindutvaRises        1
802 HindutvaRises        1
803 HindutvaRises        1
804 HindutvaRises        1
805 HindutvaRises        2
806 HindutvaRises        1
807 HindutvaRises        2
808 HindutvaRises        1
809 HindutvaRises        1
810 HindutvaRises        1
811 HindutvaRises        1
812 HindutvaRises        2
813 HindutvaRises        1
814 HindutvaRises        1
815 HindutvaRises        1
816 HindutvaRises        2
817 HindutvaRises        1
818 HindutvaRises        1
819 HindutvaRises        1
820 HindutvaRises        1
821 HindutvaRises        1
822 HindutvaRises        3
823 HindutvaRises        1
824 HindutvaRises        2
825 HindutvaRises        1
826 HindutvaRises        1
827 HindutvaRises        2
828 HindutvaRises        1
829 HindutvaRises        9
830 HindutvaRises        6
831 HindutvaRises        2
832 HindutvaRises        1
833 HindutvaRises        1
834 HindutvaRises        1
835 HindutvaRises        1
836 HindutvaRises        1
837 HindutvaRises       16
838 HindutvaRises        1
839 HindutvaRises        1
840 HindutvaRises        1
841 HindutvaRises        2
842 HindutvaRises        1
843 HindutvaRises        1
844 HindutvaRises        1
845 HindutvaRises        2
846 HindutvaRises        1
847 HindutvaRises        1
848 HindutvaRises        7
849 HindutvaRises        2
850 HindutvaRises        2
851 HindutvaRises        1
852 HindutvaRises        1
853 HindutvaRises        1
854 HindutvaRises        2
855 HindutvaRises        1
856 HindutvaRises        1
857 HindutvaRises        1
858 HindutvaRises        3
859 HindutvaRises        1
860 HindutvaRises        1
861 HindutvaRises        1
862 HindutvaRises        1
863 HindutvaRises        3
864 HindutvaRises        3
865 HindutvaRises        1
866 HindutvaRises        1
867 HindutvaRises        3
868 HindutvaRises        3
869 HindutvaRises        2
870 HindutvaRises        3
871 HindutvaRises        7
872 HindutvaRises        7
873 HindutvaRises        1
874 HindutvaRises        2
875 HindutvaRises        1
876 HindutvaRises        1
877 HindutvaRises        1
878 HindutvaRises        2
879 HindutvaRises        2
880 HindutvaRises        1
881 HindutvaRises        1
882 HindutvaRises        1
883 HindutvaRises        1
884 HindutvaRises        1
885 HindutvaRises        4
886 HindutvaRises        2
887 HindutvaRises        1
888 HindutvaRises        1
889 HindutvaRises        4
890 HindutvaRises        1
891 HindutvaRises        1
892 HindutvaRises        1
893 HindutvaRises        1
894 HindutvaRises        1
895 HindutvaRises        1
896 HindutvaRises        1
897 HindutvaRises        3
898 HindutvaRises        1
899 HindutvaRises        2
900 HindutvaRises        1
901 HindutvaRises        1
902 HindutvaRises        1
903 HindutvaRises        2
904 HindutvaRises        1
905 HindutvaRises        1
906 HindutvaRises        1
907 HindutvaRises        1
908 HindutvaRises        2
909 HindutvaRises        2
910 HindutvaRises        1
911 HindutvaRises        1
912 HindutvaRises        1
913 HindutvaRises        1
914 HindutvaRises        6
915 HindutvaRises        1
916 HindutvaRises        1
917 HindutvaRises        1
918 HindutvaRises        2
919 HindutvaRises        1
920 HindutvaRises        1
921 HindutvaRises        2
922 HindutvaRises        1
923 HindutvaRises        1
924 HindutvaRises        1
                                                                                                                                               url
1                                                                   https://www.reddit.com/r/HindutvaRises/comments/thtbq1/police_jihad_in_bengal/
2                                                                       https://www.reddit.com/r/HindutvaRises/comments/tgyxi9/we_will_always_win/
3                                                                             https://www.reddit.com/r/HindutvaRises/comments/tgszjn/sab_dekhenge/
4                                          https://www.reddit.com/r/HindutvaRises/comments/teciol/lawbeatind_uttarakhand_hc_uploads_order_denying/
5                                          https://www.reddit.com/r/HindutvaRises/comments/tdvaf1/old_jnu_professor_nivedita_menon_tells_students/
6                                                            https://www.reddit.com/r/HindutvaRises/comments/tcayaq/jai_shri_ram_jai_shri_krishna/
7                                          https://www.reddit.com/r/HindutvaRises/comments/tbzvoy/never_forget_never_forgive_the_perpetrators_the/
8                                                                  https://www.reddit.com/r/HindutvaRises/comments/swslwp/jai_bhavani_jai_shivaji/
9                                         https://www.reddit.com/r/HindutvaRises/comments/svq3u8/ram_setu_is_with_adams_bridge_those_days_are_not/
10                                             https://www.reddit.com/r/HindutvaRises/comments/sto9fm/a_great_tribute_to_our_great_ancestors_they/
11                                         https://www.reddit.com/r/HindutvaRises/comments/sr5pqq/what_is_the_main_threat_to_traditional_hinduism/
12                                                                     https://www.reddit.com/r/HindutvaRises/comments/sq6xxl/jaiiiiiii_shree_ram/
13                                      https://www.reddit.com/r/HindutvaRises/comments/smy5zk/want_opinions_on_these_hindu_resources_and_methods/
14                                         https://www.reddit.com/r/HindutvaRises/comments/sk7vt7/a_must_watch_if_you_are_a_hindu_gives_knowledge/
15                                                                   https://www.reddit.com/r/HindutvaRises/comments/sczf5u/found_this_on_youtube/
16                                        https://www.reddit.com/r/HindutvaRises/comments/sc5w4q/why_i_killed_gandhi_do_watch_this_movie_congress/
17                                                                        https://www.reddit.com/r/HindutvaRises/comments/san0u7/one_day_for_sure/
18                                         https://www.reddit.com/r/HindutvaRises/comments/s7mzne/darkest_day_in_the_history_of_independent_india/
19                                        https://www.reddit.com/r/HindutvaRises/comments/s57k2i/ed_attaches_asset_worth_rs_48_lakh_of_journalist/
20                                                                            https://www.reddit.com/r/HindutvaRises/comments/s544oj/secular_meme/
21                                                                              https://www.reddit.com/r/HindutvaRises/comments/s4got7/\030\030$//
22                                            https://www.reddit.com/r/HindutvaRises/comments/s4a74h/muslims_ruled_endia_for_800_years11_yet_were/
23             https://www.reddit.com/r/HindutvaRises/comments/s3nnwf/\006*\025_\0240_\006*\025_*050_\025_\030\030$_$/0_\025_90&\025_6-\025.(\017/
24                                          https://www.reddit.com/r/HindutvaRises/comments/s1oe1u/major_subreddit_that_has_connections_to_reddit/
25                                       https://www.reddit.com/r/HindutvaRises/comments/vr7wwz/no_investigation_no_chargesheet_no_charge_framing/
26                          https://www.reddit.com/r/HindutvaRises/comments/vqzu4f/9(&_&5_&5$\023_\025_+0_9\006_\005*.(_\a$(_9..$_\006$_\0259_8_9/
27                                                      https://www.reddit.com/r/HindutvaRises/comments/vqw8i9/we_are_leading_to_a_good_direction/
28                                                                  https://www.reddit.com/r/HindutvaRises/comments/vqfhkp/from_ig_theangryvaanar/
29                                           https://www.reddit.com/r/HindutvaRises/comments/vqel4k/2_years_ago_i_made_a_website_on_hindu_history/
30                                           https://www.reddit.com/r/HindutvaRises/comments/vq9nm6/devki_nandan_thakur_ji_message_to_every_hindu/
31                                              https://www.reddit.com/r/HindutvaRises/comments/vpuqkl/27_points_which_describe_the_uniqueness_of/
32                                             https://www.reddit.com/r/HindutvaRises/comments/vps166/when_shivsena_challenged_a_muslim_to_recite/
33                                                                                https://www.reddit.com/r/HindutvaRises/comments/vp798h/so_be_it/
34                                                                       https://www.reddit.com/r/HindutvaRises/comments/vp6qzp/\005$_9_\0050.-_9/
35                                                        https://www.reddit.com/r/HindutvaRises/comments/vp2sbp/please_share_as_much_as_possible/
36                                                                            https://www.reddit.com/r/HindutvaRises/comments/voywep/waah_my_lord/
37                                        https://www.reddit.com/r/HindutvaRises/comments/vmki0a/such_illiteracy_and_dumbness_that_ever_answer_is/
38                                                                        https://www.reddit.com/r/HindutvaRises/comments/vm2d5o/mudiji_supremacy/
39                                                                                       https://www.reddit.com/r/HindutvaRises/comments/vm2akh/_/
40                                                https://www.reddit.com/r/HindutvaRises/comments/vlttnd/jai_hanuman_check_comment_for_insta_link/
41                                        https://www.reddit.com/r/HindutvaRises/comments/vkpqjm/found_a_true_kaurava_bulla_ukareba1614_trying_to/
42                                                   https://www.reddit.com/r/HindutvaRises/comments/vkatk9/i_have_created_a_new_subreddit_called/
43                                         https://www.reddit.com/r/HindutvaRises/comments/vdtudv/lord_indra_supremacy_check_comment_for_more_vid/
44                                                                         https://www.reddit.com/r/HindutvaRises/comments/vbue0i/om_namah_shivay/
45                                                                           https://www.reddit.com/r/HindutvaRises/comments/vaqq1z/made_it_today/
46                                       https://www.reddit.com/r/HindutvaRises/comments/vaiji0/palestinian_islamic_scholar_nidhal_siam_at_alaqsa/
47                                             https://www.reddit.com/r/HindutvaRises/comments/v9ej8c/hindus_have_more_children_for_hindu_rashtra/
48                                            https://www.reddit.com/r/HindutvaRises/comments/v97cbh/hanuman_mandir_after_stone_pelting_in_ranchi/
49                                                       https://www.reddit.com/r/HindutvaRises/comments/v956zo/stone_pelting_in_ranchi_jharkhand/
50                                                               https://www.reddit.com/r/HindutvaRises/comments/v8yxmx/i_support_nupur_sharma_ji/
51                                                                https://www.reddit.com/r/HindutvaRises/comments/v8igcu/not_oc_ig_theangryvaanar/
52                                                              https://www.reddit.com/r/HindutvaRises/comments/v7827z/made_it_today_jai_shri_ram/
53                                                          https://www.reddit.com/r/HindutvaRises/comments/v6mrcx/this_reddit_is_so_out_of_touch/
54                                          https://www.reddit.com/r/HindutvaRises/comments/v5sgp9/whats_plan_b_for_hindus_andhra_is_already_more/
55                                                                    https://www.reddit.com/r/HindutvaRises/comments/v5jo6a/remove_mat_karna_bas/
56                                                                      https://www.reddit.com/r/HindutvaRises/comments/v5hk6o/about_caste_system/
57                                                                               https://www.reddit.com/r/HindutvaRises/comments/v4p1uk/up_police/
58                                                          https://www.reddit.com/r/HindutvaRises/comments/v43eac/atal_bihari_vajpayee_thug_life/
59                                                                   https://www.reddit.com/r/HindutvaRises/comments/v409gs/honour_your_ancestors/
60                                       https://www.reddit.com/r/HindutvaRises/comments/v2gx1y/good_muslim_or_bad_muslim_koo_leaker_sabmit_patra/
61                                                         https://www.reddit.com/r/HindutvaRises/comments/v2f4dy/hindu_sikh_boi_boi_on_clubhouse/
62                                       https://www.reddit.com/r/HindutvaRises/comments/v1fcoj/if_you_dont_teach_your_kids_to_be_extremely_proud/
63                                          https://www.reddit.com/r/HindutvaRises/comments/v0wehc/writing_competition_and_mentorship_program_the/
64                                                                                   https://www.reddit.com/r/HindutvaRises/comments/uycn41/title/
65                                           https://www.reddit.com/r/HindutvaRises/comments/uxk3fe/turkey_pakistani_refugees_harassing_women_and/
66                                          https://www.reddit.com/r/HindutvaRises/comments/uxjzhg/turkey_pakistani_refugee_getting_beaten_up_and/
67                                                     https://www.reddit.com/r/HindutvaRises/comments/uwh66t/rexmuslim_rexchristian_and_rexhindu/
68                                         https://www.reddit.com/r/HindutvaRises/comments/uuigle/yogi_aadityanaath_ne_btya_kii_jab_uttar_pradesh/
69                                                                      https://www.reddit.com/r/HindutvaRises/comments/utl1gz/atleast_watch_this/
70                                           https://www.reddit.com/r/HindutvaRises/comments/use8u8/panch_mukha_sadashiva_five_faces_of_sadashiva/
71                                           https://www.reddit.com/r/HindutvaRises/comments/urtruh/regarding_om_nada_sound_of_aum_sound_of_omkar/
72                                                        https://www.reddit.com/r/HindutvaRises/comments/ur5try/regarding_brahman_it_or_absolute/
73                                          https://www.reddit.com/r/HindutvaRises/comments/uo4pcy/can_someone_give_me_strong_facts_and_arguments/
74                                         https://www.reddit.com/r/HindutvaRises/comments/unwwca/from_the_angry_vaanar_additional_information_in/
75                                                                       https://www.reddit.com/r/HindutvaRises/comments/umhigz/did_you_know_that/
76                                               https://www.reddit.com/r/HindutvaRises/comments/ulb6qa/why_i_dont_like_modi_and_im_not_a_libtard/
77                                                             https://www.reddit.com/r/HindutvaRises/comments/ujsy7z/duggal_sahab_to_pappu_nikle/
78                                        https://www.reddit.com/r/HindutvaRises/comments/uieus2/a_turkish_citizen_of_armenian_origin_in_a_bus_he/
79                                           https://www.reddit.com/r/HindutvaRises/comments/ui30uq/pakistani_refugee_in_turkeyistanbul_filming_a/
80                                            https://www.reddit.com/r/HindutvaRises/comments/uhq8s5/turkey_pakistani_refugees_taking_pictures_of/
81                                            https://www.reddit.com/r/HindutvaRises/comments/uhjj1v/some_fallacy_in_religious_scripture_of_islam/
82                                                                  https://www.reddit.com/r/HindutvaRises/comments/ue9hy2/hindu_dont_speak_hindi/
83                                                          https://www.reddit.com/r/HindutvaRises/comments/uayjmq/just_dont_mess_with_true_power/
84                                                     https://www.reddit.com/r/HindutvaRises/comments/ua3my9/milards_like_this_meme_unironically/
85                                           https://www.reddit.com/r/HindutvaRises/comments/ua2rws/hanuman_chalisa_everyday_7_times_without_fail/
86                                                                https://www.reddit.com/r/HindutvaRises/comments/ua20vx/kindly_support_this_guys/
87                                                                                https://www.reddit.com/r/HindutvaRises/comments/u9kpbr/thoughts/
88                                                https://www.reddit.com/r/HindutvaRises/comments/u8qh2f/why_cant_i_find_any_help_line_for_hindus/
89                                         https://www.reddit.com/r/HindutvaRises/comments/u824j8/secoolar_india_vroo_everyone_is_subject_to_free/
90                                                             https://www.reddit.com/r/HindutvaRises/comments/u7vchz/i_am_not_gonna_vote_for_bjp/
91                                              https://www.reddit.com/r/HindutvaRises/comments/u7a2xh/big_braking_video_of_the_exact_moment_when/
92                                         https://www.reddit.com/r/HindutvaRises/comments/u75h3k/akbar_and_birbal_join_the_savesoil_movement_see/
93                                                                   https://www.reddit.com/r/HindutvaRises/comments/u701qo/mkc_secular_hindus_ki/
94                                                                                       https://www.reddit.com/r/HindutvaRises/comments/u6eq4s/_/
95                                                                    https://www.reddit.com/r/HindutvaRises/comments/u5nubg/bjp_is_our_last_hope/
96                                                           https://www.reddit.com/r/HindutvaRises/comments/u4ww01/pav_bhaji_khao_bhaji_pav_nahi/
97                                                                       https://www.reddit.com/r/HindutvaRises/comments/u4862u/what_do_you_think/
98                                                              https://www.reddit.com/r/HindutvaRises/comments/u41f8j/is_there_even_any_solution/
99                                       https://www.reddit.com/r/HindutvaRises/comments/u2uev2/join_rindianjihadiwatch_to_spread_awareness_about/
100                                          https://www.reddit.com/r/HindutvaRises/comments/u16wdl/pakistan_is_not_a_place_its_a_thought_seen_in/
101                                         https://www.reddit.com/r/HindutvaRises/comments/u156li/scene_in_front_of_shri_poddareshwar_ram_mandir/
102                                                                         https://www.reddit.com/r/HindutvaRises/comments/u11tu5/clearing_karma/
103                                             https://www.reddit.com/r/HindutvaRises/comments/u0ijs3/rama_navami_breaking_of_shivas_bow_pastime/
104                                             https://www.reddit.com/r/HindutvaRises/comments/tzlp05/indian_secularism_is_not_secularism_at_all/
105                                                         https://www.reddit.com/r/HindutvaRises/comments/tyx52z/muslim_babas_and_illegal_namaz/
106                                                                https://www.reddit.com/r/HindutvaRises/comments/tyvz2l/up_walo_lagjao_kam_payy/
107                                      https://www.reddit.com/r/HindutvaRises/comments/tydsu7/old_kejriwal_attending_christian_conversion_event/
108                                                                            https://www.reddit.com/r/HindutvaRises/comments/tyaq64/ill_be_back/
109                                                     https://www.reddit.com/r/HindutvaRises/comments/twr0f0/we_need_singers_for_mata_ki_chowki/
110                                                                 https://www.reddit.com/r/HindutvaRises/comments/twq4ba/aawaz_mat_uthao_bhaiyo/
111                                                                       https://www.reddit.com/r/HindutvaRises/comments/tw0t6i/something_i_made/
112                                                                                 https://www.reddit.com/r/HindutvaRises/comments/tv0doc/rplace/
113                                                                                      https://www.reddit.com/r/HindutvaRises/comments/tr4yja/_/
114                                       https://www.reddit.com/r/HindutvaRises/comments/tr29w7/what_is_the_difference_between_hindu_rashtra_and/
115                                        https://www.reddit.com/r/HindutvaRises/comments/tqcoq9/it_kills_me_when_kejriwal_says_majak_to_kashmir/
116                                         https://www.reddit.com/r/HindutvaRises/comments/toit0s/what_are_some_policy_changes_youd_recommend_to/
117                                                                                      https://www.reddit.com/r/HindutvaRises/comments/tm25s9/_/
118                                       https://www.reddit.com/r/HindutvaRises/comments/tkne46/the_rise_of_hindutva_in_rural_and_towns_of_india/
119                                                                     https://www.reddit.com/r/HindutvaRises/comments/tj60fg/kindly_support_him/
120                                      https://www.reddit.com/r/HindutvaRises/comments/tipa9x/watch_death_threats_to_judges_for_hijab_orderdont/
121                                        https://www.reddit.com/r/HindutvaRises/comments/til5e0/propaganda_against_the_kashmir_files_exposed_by/
122                                          https://www.reddit.com/r/HindutvaRises/comments/tid7ib/rajiv_gandhi_opens_door_of_ram_mandir_in_1986/
123                                          https://www.reddit.com/r/HindutvaRises/comments/tic5w5/radical_mob_brutually_attacked_two_people_for/
124                                              https://www.reddit.com/r/HindutvaRises/comments/tibtmz/parzania_based_on_gujarat_riots_was_given/
125                                       https://www.reddit.com/r/HindutvaRises/comments/10mnrxx/what_do_most_hindu_nationalists_think_about_the/
126                                           https://www.reddit.com/r/HindutvaRises/comments/10lubp2/do_hindu_nationalists_view_china_as_an_ally/
127                                     https://www.reddit.com/r/HindutvaRises/comments/10ke69f/rant_the_growing_amount_of_tate_peterson_elon_etc/
128                                          https://www.reddit.com/r/HindutvaRises/comments/10jpeul/advaita_vedanta_an_ancient_wisdom_for_modern/
129                                      https://www.reddit.com/r/HindutvaRises/comments/10ic7fi/mudiji_against_boycott_bollywood_khud_anti_hindu/
130                                         https://www.reddit.com/r/HindutvaRises/comments/10hn1p3/first_pakistan_map_proposed_by_muslim_leagues/
131                                                     https://www.reddit.com/r/HindutvaRises/comments/10gz96e/best_form_of_government_for_india/
132                                       https://www.reddit.com/r/HindutvaRises/comments/10gyj2u/other_than_subhas_chandra_bose_and_bhagat_singh/
133                                                     https://www.reddit.com/r/HindutvaRises/comments/10ftts8/.\025(_,((_._\006_09_9_0\0255\037/
134                                      https://www.reddit.com/r/HindutvaRises/comments/10f9ffz/this_is_what_you_get_when_you_resort_to_too_much/
135                                      https://www.reddit.com/r/HindutvaRises/comments/10dbx5i/i_think_its_my_second_time_posting_this_here_but/
136                                       https://www.reddit.com/r/HindutvaRises/comments/10bq5ux/mockery_of_hinduism_once_again_at_another_pride/
137                                      https://www.reddit.com/r/HindutvaRises/comments/10bm5mb/follow_office_sansad_on_instagram_our_goal_is_to/
138                                        https://www.reddit.com/r/HindutvaRises/comments/10blfyk/wanna_bhi_gen_z_calling_makar_sankranti_sexday/
139                                                                               https://www.reddit.com/r/HindutvaRises/comments/10ann9n/ramsetu/
140                                     https://www.reddit.com/r/HindutvaRises/comments/10anjpw/this_is_how_brainwashed_our_young_generations_are/
141                                          https://www.reddit.com/r/HindutvaRises/comments/10amqbq/another_lesserknown_marvel_from_the_farflung/
142                                       https://www.reddit.com/r/HindutvaRises/comments/10a60qa/to_ab_brahmin_angrazo_ka_bhi_brainwash_kar_rahe/
143                                                                          https://www.reddit.com/r/HindutvaRises/comments/109z5wb/subscribe_it/
144                                                         https://www.reddit.com/r/HindutvaRises/comments/109rae0/why_i_admire_godse_not_gandhi/
145                                        https://www.reddit.com/r/HindutvaRises/comments/1094jmd/gandhi_godse_ek_yudh_official_trailer_rajkumar/
146                                        https://www.reddit.com/r/HindutvaRises/comments/108a4tt/how_the_sikhs_marathas_together_drove_away_the/
147                                      https://www.reddit.com/r/HindutvaRises/comments/10815is/a_tale_of_two_calendars_how_the_west_created_the/
148                                                                         https://www.reddit.com/r/HindutvaRises/comments/107yy3h/ancient_hindu/
149                                                  https://www.reddit.com/r/HindutvaRises/comments/106ow4h/jaago_hindu_9(&_\017\025_.0$_9\b_(82/
150                                       https://www.reddit.com/r/HindutvaRises/comments/106c718/poison_verde_spread_over_da_world_at_some_point/
151                                     https://www.reddit.com/r/HindutvaRises/comments/105ou6r/islamists_attack_hindus_with_bricks_and_iron_rods/
152                                         https://www.reddit.com/r/HindutvaRises/comments/105k0oo/report_blasphemy_art_on_exhindu_to_the_bjp_it/
153                                          https://www.reddit.com/r/HindutvaRises/comments/105i43o/what_do_u_expect_government_to_do_to_muslims/
154                                             https://www.reddit.com/r/HindutvaRises/comments/1052gce/P_.2\032\033_9\037\023_\0060/_,\032\023_M/
155                                              https://www.reddit.com/r/HindutvaRises/comments/105083k/crosspost_on_all_indicdharmic_subreddits/
156                                     https://www.reddit.com/r/HindutvaRises/comments/104sb2y/this_channel_openly_promotes_terrorism_and_spread/
157                                       https://www.reddit.com/r/HindutvaRises/comments/1041nc2/do_hindu_nationalists_support_a_common_official/
158                                                                        https://www.reddit.com/r/HindutvaRises/comments/103alqy/unite_rise_win/
159                                                https://www.reddit.com/r/HindutvaRises/comments/102xdtp/critical_race_theory_intersectionality/
160                                    https://www.reddit.com/r/HindutvaRises/comments/1021a55/ambarsar_aala_kand_kr_dena_chahida_ae_inha_de_upar/
161                                                                    https://www.reddit.com/r/HindutvaRises/comments/101323y/sunrise_of_sanatan/
162                                       https://www.reddit.com/r/HindutvaRises/comments/1000w23/when_your_whole_identity_is_based_on_your_ex_if/
163                                                            https://www.reddit.com/r/HindutvaRises/comments/zwa3yq/do_you_accept_the_challenge/
164                                       https://www.reddit.com/r/HindutvaRises/comments/zuvfsu/pata_nahi_kis_roop_mein_aakar_narayan_mil_jayega/
165                                       https://www.reddit.com/r/HindutvaRises/comments/zuumnj/another_one_oh_well_at_least_she_didnt_end_up_in/
166                                      https://www.reddit.com/r/HindutvaRises/comments/zu43sa/bhaiyo_maine_unka_jhut_exposed_kar_diya_hai_ja_ka/
167                                        https://www.reddit.com/r/HindutvaRises/comments/zqwoyt/share_this_as_far_as_u_can_and_share_ur_opinion/
168                                                   https://www.reddit.com/r/HindutvaRises/comments/zqr17h/found_gold_in_an_antihindu_subreddit/
169                                        https://www.reddit.com/r/HindutvaRises/comments/zo42cs/post_ko_itna_failao_ki_ye_jihadi_jail_mein_mile/
170                                         https://www.reddit.com/r/HindutvaRises/comments/znkoiv/did_you_know_the_battle_of_haifa_is_considered/
171                                       https://www.reddit.com/r/HindutvaRises/comments/zmdi3p/old_accused_shahrukh_pathan_who_pointed_a_gun_at/
172                                                          https://www.reddit.com/r/HindutvaRises/comments/yadrf7/feminist_ek_prem_katha_part_1/
173                                         https://www.reddit.com/r/HindutvaRises/comments/xm4q2k/what_are_contemporary_hindutva_views_on_eating/
174                                      https://www.reddit.com/r/HindutvaRises/comments/xlpgvd/so_it_is_alright_to_spread_hate_against_india_and/
175                                                         https://www.reddit.com/r/HindutvaRises/comments/xlp0c6/related_to_our_national_anthem/
176                                                                          https://www.reddit.com/r/HindutvaRises/comments/xlglvk/advice_needed/
177                                         https://www.reddit.com/r/HindutvaRises/comments/xl4q6l/i_made_a_discord_server_for_this_community_for/
178                                                                https://www.reddit.com/r/HindutvaRises/comments/xj4usw/\0252/\027_\025_0\034($/
179                                                   https://www.reddit.com/r/HindutvaRises/comments/xf57y4/what_type_of_government_you_idealize/
180                                                    https://www.reddit.com/r/HindutvaRises/comments/xddfph/brothers_assemblehelp_me_to_ban_him/
181                                            https://www.reddit.com/r/HindutvaRises/comments/xb9gxo/a_road_map_on_how_hindus_should_be_with_our/
182                                          https://www.reddit.com/r/HindutvaRises/comments/xahhyf/is_this_what_secularism_is_this_guy_should_be/
183                                                         https://www.reddit.com/r/HindutvaRises/comments/xa4lt6/the_real_reason_the_queen_died/
184                                                         https://www.reddit.com/r/HindutvaRises/comments/x9oav7/someone_give_this_guy_an_award/
185                                       https://www.reddit.com/r/HindutvaRises/comments/x94k45/are_sir_ji_naam_kya_hai_uss_member_of_parliament/
186                                       https://www.reddit.com/r/HindutvaRises/comments/x92y47/are_vedas_the_one_and_only_source_of_truth_or_is/
187                                                                 https://www.reddit.com/r/HindutvaRises/comments/x7k532/apko_ghabrana_nahi_hai/
188                https://www.reddit.com/r/HindutvaRises/comments/x7hxxf/82_,&_+0_\0320\032_._\006\b_*05_07\0370*$_*0$-_*\0372_2\027_(_\025/_,$//
189                    https://www.reddit.com/r/HindutvaRises/comments/x5itwb/0'_\0057\037._0'_\03228_\025_* _8_.\037_\034$_9_8-_,'_\034(_6-_.90$/
190                                                            https://www.reddit.com/r/HindutvaRises/comments/x5dp0m/\03456._\025_\006/_*$_\0250/
191                                                                     https://www.reddit.com/r/HindutvaRises/comments/x3zhbv/hindus_are_cowards/
192                                                                    https://www.reddit.com/r/HindutvaRises/comments/x34ek4/hindus_to_bollywood/
193                                          https://www.reddit.com/r/HindutvaRises/comments/x2z060/after_ankita_in_jharkhand_naina_mishra_a_16yo/
194                                         https://www.reddit.com/r/HindutvaRises/comments/wyv6vy/made_this_art_inspired_by_our_ancient_warriors/
195                                                         https://www.reddit.com/r/HindutvaRises/comments/wwl8z6/made_digital_art_of_lord_shiva/
196                                      https://www.reddit.com/r/HindutvaRises/comments/wwjan2/i_tried_drawing_digital_art_of_lord_shiva_hari_om/
197                                                                             https://www.reddit.com/r/HindutvaRises/comments/wvv1kz/devotional/
198                                           https://www.reddit.com/r/HindutvaRises/comments/wvohph/what_is_your_view_of_subhas_chandra_bose_did/
199                                                    https://www.reddit.com/r/HindutvaRises/comments/wp1dug/independence_day_during_school_days/
200                                               https://www.reddit.com/r/HindutvaRises/comments/wouut1/why_should_we_celebrate_independence_day/
201                                                                                      https://www.reddit.com/r/HindutvaRises/comments/wk0d9s/_/
202                                           https://www.reddit.com/r/HindutvaRises/comments/wh50hn/do_you_guys_avoid_movies_that_have_muslim_or/
203                                             https://www.reddit.com/r/HindutvaRises/comments/we6b4k/i_need_a_help_from_a_person_who_is_good_in/
204                                                                                   https://www.reddit.com/r/HindutvaRises/comments/wc4c1r/true/
205                                      https://www.reddit.com/r/HindutvaRises/comments/wb8z4t/does_hindutva_support_also_black_and_white_people/
206                                       https://www.reddit.com/r/HindutvaRises/comments/w9bpj9/why_do_most_people_around_the_world_see_hindutva/
207                                         https://www.reddit.com/r/HindutvaRises/comments/w8t5kg/would_you_guys_class_mahatma_gandhi_as_a_hindu/
208                                                          https://www.reddit.com/r/HindutvaRises/comments/w7dezj/join_cubicalyogi_on_instagram/
209                                                                          https://www.reddit.com/r/HindutvaRises/comments/w66538/am_i_homofobo/
210                                                   https://www.reddit.com/r/HindutvaRises/comments/w60cy7/brother_please_support_rkattarrhindu/
211                                                             https://www.reddit.com/r/HindutvaRises/comments/w4po47/we_got_that_retention_rate/
212                                                        https://www.reddit.com/r/HindutvaRises/comments/w48bgr/abhimanyu_the_legendary_warrior/
213                                                                  https://www.reddit.com/r/HindutvaRises/comments/w3k8ym/om_indra_devaya_namah/
214                                                                              https://www.reddit.com/r/HindutvaRises/comments/w06rni/the_truth/
215                                                                         https://www.reddit.com/r/HindutvaRises/comments/vyqcnf/nari_supremacy/
216                                        https://www.reddit.com/r/HindutvaRises/comments/vy3gig/jai_radhe_govinda_bhajan_indian_culture_sanatan/
217                                        https://www.reddit.com/r/HindutvaRises/comments/vwaf1m/size_of_soul_according_to_our_scriptures_source/
218                                           https://www.reddit.com/r/HindutvaRises/comments/vvo459/old_extremely_peaceful_ones_angry_over_petas/
219                                                                    https://www.reddit.com/r/HindutvaRises/comments/vviigk/india_and_sri_lanka/
220                                                                    https://www.reddit.com/r/HindutvaRises/comments/vu9wa8/shiv_tandav_stotram/
221                                            https://www.reddit.com/r/HindutvaRises/comments/vsvl73/my_sanatan_teaches_this_not_sar_tan_se_juda/
222                                        https://www.reddit.com/r/HindutvaRises/comments/vs435z/god_of_gods_lord_shiva_supremacy_check_comments/
223                                            https://www.reddit.com/r/HindutvaRises/comments/vrs1f6/origin_of_violin_through_ravanhatha_credits/
224                                                    https://www.reddit.com/r/HindutvaRises/comments/vrr0kr/chennakeshava_temple_of_somnathpura/
225                                       https://www.reddit.com/r/HindutvaRises/comments/128p522/georgia_becomes_first_american_state_to_condemn/
226                                                                          https://www.reddit.com/r/HindutvaRises/comments/128k7ea/caption_this/
227                                         https://www.reddit.com/r/HindutvaRises/comments/128jx60/academic_sâh1bs_who_never_left_the_origins_of/
228                                                                       https://www.reddit.com/r/HindutvaRises/comments/128igts/har_har_mahadev/
229                                                                                     https://www.reddit.com/r/HindutvaRises/comments/128gtde/_/
230                                     https://www.reddit.com/r/HindutvaRises/comments/128dyi5/join_rindiarises_fight_librandus_and_get_news_and/
231                                      https://www.reddit.com/r/HindutvaRises/comments/128dvi1/come_to_bakchodiorg_for_unrestricted_free_speech/
232                                                    https://www.reddit.com/r/HindutvaRises/comments/128difg/shola_in_glorification_of_lord_ram/
233                                                                       https://www.reddit.com/r/HindutvaRises/comments/128d39n/our_real_heroes/
234                                     https://www.reddit.com/r/HindutvaRises/comments/126ebf6/why_according_to_the_ramayana_did_indra_shift_the/
235                                        https://www.reddit.com/r/HindutvaRises/comments/125fvs4/the_auspicious_birth_of_lord_rama_a_celebrated/
236                                                              https://www.reddit.com/r/HindutvaRises/comments/124v4b5/the_beheading_by_vikalpa/
237                                                                    https://www.reddit.com/r/HindutvaRises/comments/124fmab/sickular_khangress/
238                                                   https://www.reddit.com/r/HindutvaRises/comments/123h9oq/share_the_video_as_much_as_possible/
239                                        https://www.reddit.com/r/HindutvaRises/comments/122pm1w/reservation_this_is_the_hatred_in_their_hearts/
240                                                       https://www.reddit.com/r/HindutvaRises/comments/1226u92/free_time_mila_bande_ko_finally/
241                                          https://www.reddit.com/r/HindutvaRises/comments/121hj41/the_ultimate_guide_to_hindu_scriptures_karma/
242                                         https://www.reddit.com/r/HindutvaRises/comments/120sw9h/general_of_maharaja_gulab_singh_who_conquered/
243                                         https://www.reddit.com/r/HindutvaRises/comments/11zemue/can_someone_plz_tell_me_where_to_go_for_stuff/
244                                                                          https://www.reddit.com/r/HindutvaRises/comments/11z6kzo/a_comparison/
245                                                            https://www.reddit.com/r/HindutvaRises/comments/11yl3pz/ok_what_in_the_actual_hell/
246                                         https://www.reddit.com/r/HindutvaRises/comments/11xo04x/news_ki_pathshala_with_vishnu_jain_waqf_board/
247                                                                      https://www.reddit.com/r/HindutvaRises/comments/11xk13w/amritpal_to_gayo/
248                                       https://www.reddit.com/r/HindutvaRises/comments/11xglj6/jaldi_jaldi_ye_post_kar_deta_hoon_phir_goron_ko/
249                                        https://www.reddit.com/r/HindutvaRises/comments/11x8v1u/5_key_takeaways_from_the_shrimad_bhagavad_gita/
250                                     https://www.reddit.com/r/HindutvaRises/comments/11wqx60/my_digital_art_on_lord_shiva_support_if_u_like_it/
251                                                                            https://www.reddit.com/r/HindutvaRises/comments/11w83qp/bhaago_oye/
252                                                        https://www.reddit.com/r/HindutvaRises/comments/11vohen/hindu_vishwa_magazine_archives/
253                                                                               https://www.reddit.com/r/HindutvaRises/comments/11upncx/mood_ha/
254                                       https://www.reddit.com/r/HindutvaRises/comments/11uh42p/exploring_the_historical_landmarks_similarities/
255                                                                     https://www.reddit.com/r/HindutvaRises/comments/11skj2z/deep_words_indeed/
256                                         https://www.reddit.com/r/HindutvaRises/comments/11s0lwy/nabi_ke_nuske_camel_piss_medicine_in_islamref/
257                                     https://www.reddit.com/r/HindutvaRises/comments/11rp0k8/how_to_benefit_from_hindu_sacred_texts_a_guide_to/
258                                                                          https://www.reddit.com/r/HindutvaRises/comments/11r24x4/ravan_bhakts/
259                                              https://www.reddit.com/r/HindutvaRises/comments/11qyyou/unraveling_the_truth_debunking_myths_and/
260                                         https://www.reddit.com/r/HindutvaRises/comments/11q4gk4/a_hindu_actress_parading_half_naked_wearing_a/
261           https://www.reddit.com/r/HindutvaRises/comments/11nxe50/9&_-7/_\025_2\017_/\027-07\037_*0,&'_/\027-07\037_/\027_-07\037_*0,&'_/\027/
262                                                                https://www.reddit.com/r/HindutvaRises/comments/11nk7i4/art_by_jaipur_dialogue/
263                                     https://www.reddit.com/r/HindutvaRises/comments/11n07fk/a_detailed_post_on_quora_just_blew_my_mind_please/
264                                                                                     https://www.reddit.com/r/HindutvaRises/comments/11mr1us/_/
265                                           https://www.reddit.com/r/HindutvaRises/comments/11lqfh0/infographic_the_countries_shutting_down_the/
266                                                                        https://www.reddit.com/r/HindutvaRises/comments/11lnyhj/shubhkamnayein/
267                    https://www.reddit.com/r/HindutvaRises/comments/11kv7b3/*&0%_/_\034_858_,9(_\025_8.(_50$$.(_\t7_\025_\0340_\0340#_\0250(52/
268                                                      https://www.reddit.com/r/HindutvaRises/comments/11ksp6k/a_sign_of_positivity_for_indians/
269                                     https://www.reddit.com/r/HindutvaRises/comments/11k3zp1/disgusting_filth_of_this_society_miss_translating/
270                                                                          https://www.reddit.com/r/HindutvaRises/comments/11jsuut/8($(_9_8$/_9/
271                                                             https://www.reddit.com/r/HindutvaRises/comments/11jowaz/shiv_mahapuran_episode_46/
272                                                                              https://www.reddit.com/r/HindutvaRises/comments/11j46bv/19268781/
273                                     https://www.reddit.com/r/HindutvaRises/comments/11ixx0r/divine_hanuman_the_ultimate_devotee_and_protector/
274                                        https://www.reddit.com/r/HindutvaRises/comments/11isepa/if_you_dont_learn_from_history_you_will_become/
275                                        https://www.reddit.com/r/HindutvaRises/comments/11i76zy/the_western_institutions_have_a_very_intricate/
276                                      https://www.reddit.com/r/HindutvaRises/comments/11hwgcw/come_to_bakchodiorg_for_unrestricted_free_speech/
277                                    https://www.reddit.com/r/HindutvaRises/comments/11hv0bm/where_can_i_watch_the_ramayana_4k_remastered_anime/
278                                      https://www.reddit.com/r/HindutvaRises/comments/11hebjq/what_are_your_thoughts_on_creating_a_movement_if/
279                                          https://www.reddit.com/r/HindutvaRises/comments/11g4d1e/the_caravan_steals_artwork_of_der_nederlands/
280                                      https://www.reddit.com/r/HindutvaRises/comments/11g1phh/farleft_hinduphobic_antiindia_propaganda_outlets/
281                                      https://www.reddit.com/r/HindutvaRises/comments/11g0h22/yes_in_fact_we_should_ourselves_take_the_road_of/
282                                                                        https://www.reddit.com/r/HindutvaRises/comments/11fzf06/aye_hye_modiji/
283                                         https://www.reddit.com/r/HindutvaRises/comments/11fxym5/hokage_modi_sama_is_a_new_hindutva_anime_page/
284                                           https://www.reddit.com/r/HindutvaRises/comments/11fdksk/is_any_part_or_parts_or_sites_that_indicate/
285                                       https://www.reddit.com/r/HindutvaRises/comments/11fb53g/please_know_that_the_aryan_invasion_theory_is_a/
286                                        https://www.reddit.com/r/HindutvaRises/comments/11eaac6/khalistanis_afghan_khalistani_bhai_bhai_hahaha/
287                                                   https://www.reddit.com/r/HindutvaRises/comments/11cklat/ladies_girls_do_yall_agree_with_moi/
288                                     https://www.reddit.com/r/HindutvaRises/comments/11ccynx/daily_reminder_that_westerners_arent_saviors_they/
289                                                    https://www.reddit.com/r/HindutvaRises/comments/11c3sfi/\037\a\0372_0#\034_\025_\0320#_._9/
290                                                                        https://www.reddit.com/r/HindutvaRises/comments/11bc0dy/abhijit_chadva/
291                                                              https://www.reddit.com/r/HindutvaRises/comments/11awh26/art_inspired_by_hinduism/
292                                         https://www.reddit.com/r/HindutvaRises/comments/11a18xf/this_is_how_the_ecosystem_works_ani_is_also_a/
293                                            https://www.reddit.com/r/HindutvaRises/comments/119ncin/what_do_thou_all_thinkest_about_this_in_my/
294                               https://www.reddit.com/r/HindutvaRises/comments/1192qka/they_beliève_that_r\001m\001yaGa_is_totally_fake_untrue/
295                                                     https://www.reddit.com/r/HindutvaRises/comments/11867w1/ama_with_drkoenraad_elst_upcoming/
296                                       https://www.reddit.com/r/HindutvaRises/comments/118639s/this_thread_is_ought_to_be_forwarded_reached_to/
297                                                                           https://www.reddit.com/r/HindutvaRises/comments/1178i19/jay_sanatan/
298                                                              https://www.reddit.com/r/HindutvaRises/comments/1175mkv/nytimes_ki_jali_padi_hai/
299                                     https://www.reddit.com/r/HindutvaRises/comments/11611zb/veer_vinayak_damodar_savarkars_motivational_quote/
300                                            https://www.reddit.com/r/HindutvaRises/comments/115avni/a_simple_thing_is_no_one_other_than_indian/
301                                                              https://www.reddit.com/r/HindutvaRises/comments/114ika6/thy_thoughts_et_opinions/
302                                               https://www.reddit.com/r/HindutvaRises/comments/114iaya/pYñ\na_mYkk\001rs_*\036\032_.\025\02508/
303                                    https://www.reddit.com/r/HindutvaRises/comments/114ew8f/uk_mayor_bob_blackman_on_indias_growth_credits_ani/
304                                                            https://www.reddit.com/r/HindutvaRises/comments/1149w6o/*0\032(_68$0_\025_*$_\0322/
305                                 https://www.reddit.com/r/HindutvaRises/comments/112uqkc/9\025.$_\0329_\0258_\025_-_9_2\025(_88\037._$_9.0_9_9/
306                                                                https://www.reddit.com/r/HindutvaRises/comments/112a0hp/what_do_hindutvas_want/
307                                       https://www.reddit.com/r/HindutvaRises/comments/111dqgp/how_can_dhirendra_krishna_shashtri_have_so_many/
308                                      https://www.reddit.com/r/HindutvaRises/comments/10yorut/thats_why_we_brahmins_hate_mlechajatsmassagaetes/
309                                                                               https://www.reddit.com/r/HindutvaRises/comments/10x2ium/satsang/
310                                                                          https://www.reddit.com/r/HindutvaRises/comments/10wkf1u/gandhi_godse/
311                                               https://www.reddit.com/r/HindutvaRises/comments/10wjz57/what_can_i_do_to_help_the_hindu_rashtra/
312                                                                               https://www.reddit.com/r/HindutvaRises/comments/10w44kk/satsang/
313                                            https://www.reddit.com/r/HindutvaRises/comments/10v35t1/critical_caste_theory_critical_race_theory/
314                                     https://www.reddit.com/r/HindutvaRises/comments/10u7cph/the_antihindu_rte_law_teacher_salaries_in_private/
315                                                                               https://www.reddit.com/r/HindutvaRises/comments/10u5i06/chadgpt/
316                                                 https://www.reddit.com/r/HindutvaRises/comments/10u1laf/cohna_anticaste_discrimination_effort/
317                                            https://www.reddit.com/r/HindutvaRises/comments/10t6ce2/internal_politics_a_quick_call_to_everyone/
318                                         https://www.reddit.com/r/HindutvaRises/comments/10smdze/what_do_hindu_nationalists_think_about_indian/
319                                               https://www.reddit.com/r/HindutvaRises/comments/10qyxt1/what_is_the_problem_with_islam_in_india/
320                                       https://www.reddit.com/r/HindutvaRises/comments/10q0hp1/what_economic_system_do_most_hindu_nationalists/
321                                     https://www.reddit.com/r/HindutvaRises/comments/10ptqv8/ramayana_mahabharata_and_the_puranas_best_english/
322                                         https://www.reddit.com/r/HindutvaRises/comments/10p6bkd/what_do_hindu_nationalists_think_about_famous/
323       https://www.reddit.com/r/HindutvaRises/comments/10o2i6n/\005,_8.\035_\006/_\025_\025/_\005\0270\034_2\027_breast_tax_2\0275$_%_.$2,_\a(/
324                                         https://www.reddit.com/r/HindutvaRises/comments/10n73pv/five_brahmasutras_commentary_by_vijnanabhiksu/
325                                        https://www.reddit.com/r/HindutvaRises/comments/13dj16d/adah_sharma_on_the_success_of_the_kerala_story/
326                                     https://www.reddit.com/r/HindutvaRises/comments/13dhh9z/a_abdul_of_pakistan_is_challenging_pakistans_army/
327                                           https://www.reddit.com/r/HindutvaRises/comments/13dgans/the_bhagavad_gita_a_guidebook_for_spiritual/
328                                     https://www.reddit.com/r/HindutvaRises/comments/13cy989/in_relation_to_my_previous_post_which_was_a_video/
329                             https://www.reddit.com/r/HindutvaRises/comments/13cxnil/was_gurkd\023v_rab+ndra_naath_mh\001kur_a_saEgh+_\001nand/
330                                      https://www.reddit.com/r/HindutvaRises/comments/13cvdoc/the_kerala_story_this_is_our_story_victim_shruti/
331                                                   https://www.reddit.com/r/HindutvaRises/comments/13cr19o/akola_shiv_mahapuran_ki_katha_day_5/
332                                     https://www.reddit.com/r/HindutvaRises/comments/13cnjbz/i_know_what_pakpak_really_isbut_i_have_a_question/
333                                                     https://www.reddit.com/r/HindutvaRises/comments/13cn0yp/ladke_ne_ak_sath_nipta_diya_sabko/
334                                          https://www.reddit.com/r/HindutvaRises/comments/13cj58k/dhami_governments_bulldozer_thundered_on_the/
335                                         https://www.reddit.com/r/HindutvaRises/comments/13ci8q0/exploring_the_rigveda_the_oldest_veda_and_its/
336                                                     https://www.reddit.com/r/HindutvaRises/comments/13c0qoo/choose_ur_idols_carefullyjai_hind/
337                                                      https://www.reddit.com/r/HindutvaRises/comments/13bqeu6/akola_shiv_mahapuran_katha_day_4/
338                                          https://www.reddit.com/r/HindutvaRises/comments/13bfdii/the_significance_of_bhagavad_gita_shlokas_in/
339                                                                     https://www.reddit.com/r/HindutvaRises/comments/13b1jjm/jai_shree_krishna/
340                                              https://www.reddit.com/r/HindutvaRises/comments/13anz1o/swami_samarth_shiv_mahapuran_katha_day_3/
341                                          https://www.reddit.com/r/HindutvaRises/comments/13afv2s/can_people_stop_being_so_patronizing_towards/
342                                     https://www.reddit.com/r/HindutvaRises/comments/139wsa0/sammyvada_on_tiktok_instagram_debunks_khalistanis/
343                                                              https://www.reddit.com/r/HindutvaRises/comments/139t6ni/help_regarding_upanayana/
344                                      https://www.reddit.com/r/HindutvaRises/comments/139s14t/day_2_akola_shiv_puran_katha_pradeep_mishra_live/
345                                     https://www.reddit.com/r/HindutvaRises/comments/139lr01/abhijit_iyer_mitra_take_on_rahul_gandhi_speech_at/
346                                                                               https://www.reddit.com/r/HindutvaRises/comments/139f8xh/secular/
347                                        https://www.reddit.com/r/HindutvaRises/comments/139dib5/narada_jayanti_honoring_the_messenger_of_peace/
348                                                                               https://www.reddit.com/r/HindutvaRises/comments/1398qm8/proudly/
349                                        https://www.reddit.com/r/HindutvaRises/comments/1393xs4/is_it_possible_to_build_a_great_wall_along_the/
350                                              https://www.reddit.com/r/HindutvaRises/comments/138kyzw/day_1_swami_samarth_shiv_mahapuran_katha/
351                                                                           https://www.reddit.com/r/HindutvaRises/comments/138dtgx/gandustanis/
352                                                                   https://www.reddit.com/r/HindutvaRises/comments/137u7o1/'0._0\0257$_0\0257$/
353                                       https://www.reddit.com/r/HindutvaRises/comments/137la92/shri_narasimha_jayanti_and_mata_chinnmasta_devi/
354                                        https://www.reddit.com/r/HindutvaRises/comments/137b16d/the_significance_of_narasimha_jayanti_in_hindu/
355                                                                          https://www.reddit.com/r/HindutvaRises/comments/1375nu2/jai_shri_ram/
356                                                                            https://www.reddit.com/r/HindutvaRises/comments/1375md5/i_want_you/
357                                          https://www.reddit.com/r/HindutvaRises/comments/136biy5/how_to_perform_the_pradosh_vrat_puja_at_home/
358                                         https://www.reddit.com/r/HindutvaRises/comments/135ireh/shop_the_best_selection_of_pure_cotton_dhotis/
359                                                                     https://www.reddit.com/r/HindutvaRises/comments/135ipj7/dmk_lies_debunked/
360                                         https://www.reddit.com/r/HindutvaRises/comments/135e8y9/parashurama_dwadashi_a_day_to_honor_the_sixth/
361                                                 https://www.reddit.com/r/HindutvaRises/comments/134oc41/day7_ekanteshwar_shiv_mahapuran_katha/
362                                                                  https://www.reddit.com/r/HindutvaRises/comments/134h65s/manglik_dosh_nivaran/
363                                     https://www.reddit.com/r/HindutvaRises/comments/134bcv1/bhaskaracharya_stated_the_laws_of_gravity_in_book/
364                                                       https://www.reddit.com/r/HindutvaRises/comments/133y30z/revenge_from_ukraine_see_4_pics/
365                                             https://www.reddit.com/r/HindutvaRises/comments/133v06y/thesammyvada_on_instagram_on_idol_worship/
366                                             https://www.reddit.com/r/HindutvaRises/comments/133uuwq/thesammyvada_on_instagram_more_debunks_on/
367                                                            https://www.reddit.com/r/HindutvaRises/comments/133s68q/whos_planning_to_read_this/
368                                        https://www.reddit.com/r/HindutvaRises/comments/133rgt4/pradeep_mishra_live_ekanteshwar_shiv_mahapuran/
369                               https://www.reddit.com/r/HindutvaRises/comments/133nhes/counting_21_to_30_in_sanskrit_88\025$_._\027($_sanskrit/
370                                          https://www.reddit.com/r/HindutvaRises/comments/133dlzg/dont_ever_dare_to_take_panga_with_the_dogras/
371                                                                          https://www.reddit.com/r/HindutvaRises/comments/133bgo4/just_a_query/
372                               https://www.reddit.com/r/HindutvaRises/comments/132qyxp/counting_11_to_20_in_sanskrit_88\025$_._\027($_sanskrit/
373                                     https://www.reddit.com/r/HindutvaRises/comments/132kt59/how_to_observe_saturday_as_a_holy_day_in_hinduism/
374                                https://www.reddit.com/r/HindutvaRises/comments/13241tr/counting_1_to_10_in_sanskrit_88\025$_._\027($_sanskrit/
375                                      https://www.reddit.com/r/HindutvaRises/comments/130avqg/bagalamukhi_jayanti_the_day_to_seek_the_goddesss/
376                                                      https://www.reddit.com/r/HindutvaRises/comments/12zgotk/top_8_kattar_dharmic_politicians/
377                                     https://www.reddit.com/r/HindutvaRises/comments/12z9nx2/panther_banne_chale_the_bhigi_billi_banadiya_shiv/
378                                                             https://www.reddit.com/r/HindutvaRises/comments/12yoz3g/narendra_modi_ai_chat_bot/
379                                         https://www.reddit.com/r/HindutvaRises/comments/12yayzd/surdas_jayanti_a_tribute_to_the_visionary_who/
380                                                 https://www.reddit.com/r/HindutvaRises/comments/12x621f/the_mysteries_of_hindu_monday_mantras/
381                                          https://www.reddit.com/r/HindutvaRises/comments/12wgilh/thee_land_thee_soul_thee_life_belongs_to_god/
382                                                           https://www.reddit.com/r/HindutvaRises/comments/12vtrfy/ashta_siddhis_of_hanuman_ji/
383                                            https://www.reddit.com/r/HindutvaRises/comments/12v0zk5/akshaya_tritiya_a_significant_day_in_hindu/
384                                                               https://www.reddit.com/r/HindutvaRises/comments/12utwys/how_i_attained_divinity/
385                                                         https://www.reddit.com/r/HindutvaRises/comments/12up2bd/parashuram_ji_was_a_gorakshak/
386                                            https://www.reddit.com/r/HindutvaRises/comments/12ucoy3/friendship_now_vs_friendship_in_mahabharat/
387                                     https://www.reddit.com/r/HindutvaRises/comments/12tsvat/chandra_darshan_a_celebration_of_the_moons_energy/
388                                        https://www.reddit.com/r/HindutvaRises/comments/12trw2u/which_indian_celebrity_in_the_west_is_the_best/
389                                         https://www.reddit.com/r/HindutvaRises/comments/12spu4k/vaishakha_amavasya_and_its_connection_to_lord/
390                                         https://www.reddit.com/r/HindutvaRises/comments/12sine7/uk_hindu_students_bullied_pushed_to_covert_to/
391                                                          https://www.reddit.com/r/HindutvaRises/comments/12s60pv/christopher_hickens_on_islam/
392                                        https://www.reddit.com/r/HindutvaRises/comments/12rjx7r/rituals_and_significance_of_anvadhan_and_ishti/
393                                     https://www.reddit.com/r/HindutvaRises/comments/12qoxdv/west_bengal_islamic_organisation_takes_out_candle/
394                                           https://www.reddit.com/r/HindutvaRises/comments/12qh2bw/a_nonnda_state_like_odisha_has_laws_against/
395                                       https://www.reddit.com/r/HindutvaRises/comments/12pbbyz/the_power_of_monday_fasting_how_somvar_vrat_can/
396                                            https://www.reddit.com/r/HindutvaRises/comments/12pa8gz/muslim_playing_victim_saying_haindavas_are/
397                                      https://www.reddit.com/r/HindutvaRises/comments/12nsmb6/varahamihira_was_one_of_the_greatest_astronomers/
398                                     https://www.reddit.com/r/HindutvaRises/comments/12mjmyx/brick_pelting_on_hanuman_jayanti_motorcycle_rally/
399                                          https://www.reddit.com/r/HindutvaRises/comments/12ls87j/today_is_the_birth_anniversary_of_one_of_the/
400                                                                         https://www.reddit.com/r/HindutvaRises/comments/12lrxn5/test_reaction/
401                                            https://www.reddit.com/r/HindutvaRises/comments/12ks651/pakistani_hindu_women_children_attacked_by/
402                                           https://www.reddit.com/r/HindutvaRises/comments/12kig3c/significance_of_thursday_in_hindu_mythology/
403                                            https://www.reddit.com/r/HindutvaRises/comments/12ke2y9/serious_question_should_hindus_incorporate/
404                                           https://www.reddit.com/r/HindutvaRises/comments/12jubbq/hindu_devotee_arrested_for_worshipping_at_a/
405                                                             https://www.reddit.com/r/HindutvaRises/comments/12jh09g/read_understand_the_vedas/
406                                        https://www.reddit.com/r/HindutvaRises/comments/12ibgyx/understanding_the_differences_and_diversity_of/
407                                     https://www.reddit.com/r/HindutvaRises/comments/12iasyf/periyarites_are_trying_hard_to_break_the_unity_of/
408                                                                     https://www.reddit.com/r/HindutvaRises/comments/12i43ry/no_copyright_meme/
409                                    https://www.reddit.com/r/HindutvaRises/comments/12hxl88/dancing_with_god_himself_panipat_hanuman_janmotsav/
410                                         https://www.reddit.com/r/HindutvaRises/comments/12ho7fk/look_at_the_state_of_those_who_dared_to_speak/
411                                         https://www.reddit.com/r/HindutvaRises/comments/12hc5yb/now_i_understand_why_the_whites_like_buddhism/
412                                                             https://www.reddit.com/r/HindutvaRises/comments/12h5fk8/how_mantra_chanting_helps/
413                                                                      https://www.reddit.com/r/HindutvaRises/comments/12gfctf/attack_on_hindus/
414                                              https://www.reddit.com/r/HindutvaRises/comments/12g99ru/always_there_is_something_supreme_than_u/
415                                                                              https://www.reddit.com/r/HindutvaRises/comments/12eugv5/divinity/
416                                                        https://www.reddit.com/r/HindutvaRises/comments/12eivkn/wakeup_call_for_hindu_liberals/
417                                       https://www.reddit.com/r/HindutvaRises/comments/12eg35a/the_impact_of_vedic_upanishads_on_human_society/
418                                       https://www.reddit.com/r/HindutvaRises/comments/12dr0ae/hindustan_mein_kuch_bhi_nahi_hai_viraana_khaali/
419                         https://www.reddit.com/r/HindutvaRises/comments/12dgw47/jai_jai_jai_bajrangbali_9(.(_\034/$_\0175_9(.(_\034_\034(.$85/
420                                         https://www.reddit.com/r/HindutvaRises/comments/12ct6zr/but_maybe_we_shouldnt_jump_to_the_conclusions/
421                                                                       https://www.reddit.com/r/HindutvaRises/comments/12cc4g7/savarkarliveson/
422                                                                      https://www.reddit.com/r/HindutvaRises/comments/12ca5x2/woke_up_citizens/
423                                          https://www.reddit.com/r/HindutvaRises/comments/12bjd3q/why_bakchodiorg_is_needed_more_than_ever_the/
424                                       https://www.reddit.com/r/HindutvaRises/comments/12bfwx2/wednesdays_in_hinduism_worshipping_lord_krishna/
425                          https://www.reddit.com/r/HindutvaRises/comments/145rq76/850\0250_-\027$_89_\025_\0270_9_bhagat_singh_vinayak_damodar/
426                                                                                  https://www.reddit.com/r/HindutvaRises/comments/145ocj0/true/
427                                                       https://www.reddit.com/r/HindutvaRises/comments/145nve6/this_is_how_we_all_should_react/
428                                         https://www.reddit.com/r/HindutvaRises/comments/1453ebl/what_position_does_the_hinduism_traditionally/
429                                         https://www.reddit.com/r/HindutvaRises/comments/1450v92/the_beauty_and_elegance_of_white_marble_hindu/
430                                                                          https://www.reddit.com/r/HindutvaRises/comments/144y1mt/vote_for_bjp/
431                                                 https://www.reddit.com/r/HindutvaRises/comments/1443qs1/the_role_of_colors_in_lord_shiva_idol/
432                                                                               https://www.reddit.com/r/HindutvaRises/comments/143ynft/secular/
433                                                         https://www.reddit.com/r/HindutvaRises/comments/143w1kx/kattar_dharmic_periodic_table/
434                                                   https://www.reddit.com/r/HindutvaRises/comments/143rgqm/the_hinduism_youve_been_waiting_for/
435                                            https://www.reddit.com/r/HindutvaRises/comments/14380zw/how_our_ancient_rishis_preserved_the_vedas/
436                                      https://www.reddit.com/r/HindutvaRises/comments/1434nhy/question_about_hindutva_claiming_that_preislamic/
437                                                                       https://www.reddit.com/r/HindutvaRises/comments/1434lw4/blasphemy_karbe/
438                                          https://www.reddit.com/r/HindutvaRises/comments/1423uff/can_muslim_be_compared_as_jews_of_the_german/
439                                     https://www.reddit.com/r/HindutvaRises/comments/1419mf0/unlocking_the_secrets_of_hindu_philosophy_through/
440                                                                   https://www.reddit.com/r/HindutvaRises/comments/1412akx/achaaa_thik_haiiiii/
441                               https://www.reddit.com/r/HindutvaRises/comments/14107md/b\001l\023[wår,2650_traïn_accident_rss_abvp_bajraEg_dal/
442                                                   https://www.reddit.com/r/HindutvaRises/comments/140g63o/religious_affiliation_in_bangladesh/
443                                          https://www.reddit.com/r/HindutvaRises/comments/13z6y14/how_hindi_books_on_spirituality_can_help_you/
444                                                           https://www.reddit.com/r/HindutvaRises/comments/13yp2dq/need_to_shut_some_people_up/
445                                                 https://www.reddit.com/r/HindutvaRises/comments/13y5sp4/how_is_faith_defined_in_bhagavat_gita/
446                                                                              https://www.reddit.com/r/HindutvaRises/comments/13y4lva/saluteee/
447                                          https://www.reddit.com/r/HindutvaRises/comments/13xouy7/a_shocking_rescue_operation_from_pune_source/
448                                     https://www.reddit.com/r/HindutvaRises/comments/13xajfu/vedic_philosophy_key_concepts_from_the_four_vedas/
449                                                                       https://www.reddit.com/r/HindutvaRises/comments/13wieh5/curious_thought/
450                                     https://www.reddit.com/r/HindutvaRises/comments/13w8xe8/when_dmk_founder_annadurai_belittled_the_historic/
451                                                              https://www.reddit.com/r/HindutvaRises/comments/13w1t9d/read_it_and_kindly_share/
452                                             https://www.reddit.com/r/HindutvaRises/comments/13vio8x/the_essence_of_the_svetasvatara_upanishad/
453                                        https://www.reddit.com/r/HindutvaRises/comments/13unnc0/the_connection_between_the_chandogya_upanishad/
454                                      https://www.reddit.com/r/HindutvaRises/comments/13ukrb6/i_made_a_video_on_the_goa_inquisition_its_my_1st/
455                                                        https://www.reddit.com/r/HindutvaRises/comments/13uf5po/title_bhi_jai_jagannath_bolega/
456                                         https://www.reddit.com/r/HindutvaRises/comments/13t0c9j/brihadaranyaka_upanishad_the_key_to_achieving/
457                                          https://www.reddit.com/r/HindutvaRises/comments/13s8bj6/the_teachings_of_yama_in_the_katha_upanishad/
458                                         https://www.reddit.com/r/HindutvaRises/comments/13s08ro/cramp_pain_ho_rha_tha_toh_to_divert_my_mind_i/
459                                                                                  https://www.reddit.com/r/HindutvaRises/comments/13rl3ys/shiv/
460                                                                               https://www.reddit.com/r/HindutvaRises/comments/13rl2t0/7_kanda/
461                                                     https://www.reddit.com/r/HindutvaRises/comments/13qyz6c/paar_na_logoge_shree_raam_ke_bina/
462                     https://www.reddit.com/r/HindutvaRises/comments/13qypyu/¢\u0095_¬¶¬¬¦¯²¯_\nh\001k\001_university_b\001Egl\001d\023[a_east/
463                                                   https://www.reddit.com/r/HindutvaRises/comments/13qgpad/snapchat_is_hinduphobic_bansnapchat/
464                                        https://www.reddit.com/r/HindutvaRises/comments/13qeaz5/finding_inner_peace_and_happiness_with_mundaka/
465                                              https://www.reddit.com/r/HindutvaRises/comments/13prjsu/doleshwar_mahadev_shiv_puran_katha_day_7/
466                                     https://www.reddit.com/r/HindutvaRises/comments/13pqbrj/my_sisters_brothers_its_time_to_fight_for_freedom/
467                                     https://www.reddit.com/r/HindutvaRises/comments/13phzja/the_beauty_of_hindutva_carnatic_music_jeeva_nadhi/
468                                             https://www.reddit.com/r/HindutvaRises/comments/13phwkc/ur_ancestors_r_vishnu_worshippers_and_u_r/
469                                           https://www.reddit.com/r/HindutvaRises/comments/13pgsv5/how_taittiriya_upanishad_influenced_vedanta/
470                                              https://www.reddit.com/r/HindutvaRises/comments/13ovaq7/doleshwar_mahadev_shiv_puran_katha_day_6/
471                                       https://www.reddit.com/r/HindutvaRises/comments/13ompbt/when_rana_pratap_captured_the_wife_and_daughter/
472                                          https://www.reddit.com/r/HindutvaRises/comments/13ojezw/the_wisdom_of_kena_upanishad_key_lessons_for/
473                                             https://www.reddit.com/r/HindutvaRises/comments/13nwq0l/dholeshwar_mahadev_shiv_puran_katha_day_5/
474                                        https://www.reddit.com/r/HindutvaRises/comments/13nmb6t/bhagwa_chaddi_ki_power_abhi_libranduo_ko_malum/
475                                         https://www.reddit.com/r/HindutvaRises/comments/13n0akl/here_is_the_video_of_that_paks_person_who_has/
476                                                  https://www.reddit.com/r/HindutvaRises/comments/13mxhiy/doleshwar_shiv_mahapuran_katha_day_4/
477                                     https://www.reddit.com/r/HindutvaRises/comments/13mlk8v/exploring_the_deep_philosophical_concepts_of_isha/
478                                          https://www.reddit.com/r/HindutvaRises/comments/13lwcfs/doleshwar_mahadev_shiv_mahapuran_katha_day_3/
479                                    https://www.reddit.com/r/HindutvaRises/comments/13l0hk3/day_2_dholeshwar_mahadev_shiv_puran_pradeep_mishra/
480                                                           https://www.reddit.com/r/HindutvaRises/comments/13kt7et/we_have_gained_more_brother/
481                                      https://www.reddit.com/r/HindutvaRises/comments/13krcdu/exploring_the_spiritual_depth_of_ashtavakra_gita/
482                                                https://www.reddit.com/r/HindutvaRises/comments/13k832g/kejriwal_ka_sach_hinducafe_follow_karo/
483                                          https://www.reddit.com/r/HindutvaRises/comments/13k4ejx/doleshwar_mahadev_shiv_mahapuran_katha_day_1/
484                                     https://www.reddit.com/r/HindutvaRises/comments/13k4bm2/next_time_a_bhimta_claims_asurs_to_be_dalits_show/
485                                     https://www.reddit.com/r/HindutvaRises/comments/13jurh1/original_names_of_hindu_cities_which_were_renamed/
486                                     https://www.reddit.com/r/HindutvaRises/comments/13j9wqy/how_they_are_cutting_roots_of_country_in_greed_of/
487                                       https://www.reddit.com/r/HindutvaRises/comments/13iymcr/ive_been_engaged_in_an_edit_war_for_a_month_now/
488                                          https://www.reddit.com/r/HindutvaRises/comments/13ix7mj/understanding_the_role_of_yajurveda_in_vedic/
489                                                     https://www.reddit.com/r/HindutvaRises/comments/13i5dvm/alternatives_to_western_platforms/
490                                        https://www.reddit.com/r/HindutvaRises/comments/13i4vwq/glimpse_of_heaven_mandir_wahi_ban_raha_hai_jai/
491                                        https://www.reddit.com/r/HindutvaRises/comments/13i186u/biased_wikipedia_calling_kerala_story_bjpsangh/
492                                         https://www.reddit.com/r/HindutvaRises/comments/13hzan8/discovering_the_beauty_of_samaveda_the_oldest/
493                                         https://www.reddit.com/r/HindutvaRises/comments/13h4if0/*0_6\0250\0320/_on_place_of_women_in_8($(_'0./
494                                               https://www.reddit.com/r/HindutvaRises/comments/13h05c6/art_of_raja_ravi_verma_jay_jay_shri_ram/
495                                                     https://www.reddit.com/r/HindutvaRises/comments/13gyq09/which_type_of_society_do_you_like/
496                                                                https://www.reddit.com/r/HindutvaRises/comments/13gnvfp/bhagya_badalne_ke_upay/
497                                         https://www.reddit.com/r/HindutvaRises/comments/13gjp6n/sickulars_will_be_happy_because_this_why_what/
498                                          https://www.reddit.com/r/HindutvaRises/comments/13gclz3/this_is_a_big_problem_in_several_portions_of/
499                                            https://www.reddit.com/r/HindutvaRises/comments/13g9zyk/next_time_a_librandu_suggests_you_to_build/
500                                                      https://www.reddit.com/r/HindutvaRises/comments/13g9rgb/sharirik_kast_door_karne_ke_upay/
501                                       https://www.reddit.com/r/HindutvaRises/comments/13g9fe4/the_symbolism_of_samsara_in_hindu_mythology_and/
502                                      https://www.reddit.com/r/HindutvaRises/comments/13g7nwa/mohmmad_ali_jinnah_hindu_parivar_se_muslim_banne/
503                                            https://www.reddit.com/r/HindutvaRises/comments/13g776g/manoj_pradhan_kattar_jagannath_bhakt_kandh/
504                                                                https://www.reddit.com/r/HindutvaRises/comments/13g1iff/commiejihadi_bhai_bhai/
505                                       https://www.reddit.com/r/HindutvaRises/comments/13fqfuu/this_youtuber_guy_has_became_a_new_face_of_tool/
506                                                                               https://www.reddit.com/r/HindutvaRises/comments/13fq16u/this_pg/
507                                       https://www.reddit.com/r/HindutvaRises/comments/13foa7p/jay_bajrangbali_indian_army_soldiers_roar_in_uk/
508                                         https://www.reddit.com/r/HindutvaRises/comments/13fhxmv/i_didnt_remove_my_tweet_i_submitted_an_appeal/
509                                       https://www.reddit.com/r/HindutvaRises/comments/13fhh9e/when_nadir_shah_simply_murdered_more_than_17000/
510                                       https://www.reddit.com/r/HindutvaRises/comments/13feqq9/soros_ka_ttt_dttti_apni_hi_pool_kholne_ka_proof/
511                                     https://www.reddit.com/r/HindutvaRises/comments/13fe7q1/status_of_a_hindu_in_pakistan_he_told_how_muslims/
512                                          https://www.reddit.com/r/HindutvaRises/comments/13fdq56/the_mahabharata_lessons_in_ethics_and_dharma/
513                                                                           https://www.reddit.com/r/HindutvaRises/comments/13fc1yq/kon_jeetega/
514                                       https://www.reddit.com/r/HindutvaRises/comments/13fa301/dhruv_rathee_half_baked_facts_to_manipulate_his/
515            https://www.reddit.com/r/HindutvaRises/comments/13f8swr/&_\02502_8\0370_0\034($_\025_\0250#_0\034/_\0250_09_,(_5&6_._\017\0258%_im/
516                                         https://www.reddit.com/r/HindutvaRises/comments/13ep29o/swami_samarth_shiv_puran_katha_day_7_in_hindi/
517                                                https://www.reddit.com/r/HindutvaRises/comments/13eml3v/a_website_named_youngisthan_shows_shri/
518                                       https://www.reddit.com/r/HindutvaRises/comments/13ej0ir/1940s_and_today_rock_in_kanyakumari_where_swami/
519                                                                     https://www.reddit.com/r/HindutvaRises/comments/13eibmy/naxalio_ki_thukai/
520                                        https://www.reddit.com/r/HindutvaRises/comments/13ecw7i/sudhansu_trivedi_gave_a_befitting_reply_to_the/
521                                       https://www.reddit.com/r/HindutvaRises/comments/13dttg4/lord_jagannath_temple_is_a_hindu_temple_located/
522                                              https://www.reddit.com/r/HindutvaRises/comments/13dql45/swami_samarth_shiv_mahapuran_katha_day_6/
523                                                      https://www.reddit.com/r/HindutvaRises/comments/13dl8ea/status_of_christianity_in_europe/
524                                     https://www.reddit.com/r/HindutvaRises/comments/13dkf5o/hum_dekhenge_an_antihindu_muslim_suprémacist_song/
525                                                         https://www.reddit.com/r/HindutvaRises/comments/155uswt/help_us_make_krishna_on_place/
526                                               https://www.reddit.com/r/HindutvaRises/comments/154ue9e/help_us_make_shri_krishna_art_in_rplace/
527                                            https://www.reddit.com/r/HindutvaRises/comments/1541w54/what_the_hell_is_happening_in_india_i_cant/
528                                             https://www.reddit.com/r/HindutvaRises/comments/153xrmb/please_report_this_channel_it_is_defaming/
529                                  https://www.reddit.com/r/HindutvaRises/comments/152wyct/day_7_60_$/\027_65_.9_*0#_\025%_shri_shiv_maha_puran/
530                                       https://www.reddit.com/r/HindutvaRises/comments/152otc0/dussehra_festival_at_kulasai_mutharamman_temple/
531                                           https://www.reddit.com/r/HindutvaRises/comments/1523j3v/what_is_love_j1had_what_is_the_proof_for_it/
532                                  https://www.reddit.com/r/HindutvaRises/comments/1521bts/day_6_60_$/\027_65_.9_*0#_\025%_shri_shiv_maha_puran/
533                                     https://www.reddit.com/r/HindutvaRises/comments/151pv7q/do_you_think_that_american_born_indian_hindus_are/
534                                  https://www.reddit.com/r/HindutvaRises/comments/15151h8/day_5_60_$/\027_65_.9_*0#_\025%_shri_shiv_maha_puran/
535                                  https://www.reddit.com/r/HindutvaRises/comments/150bhpm/day_4_60_$/\027_65_.9_*0#_\025%_shri_shiv_maha_puran/
536                                       https://www.reddit.com/r/HindutvaRises/comments/150b1d9/hanumanjis_epic_in_itself_is_far_far_grand_than/
537                          https://www.reddit.com/r/HindutvaRises/comments/14zetfe/day_3_ll_60_$/\027_65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
538                                         https://www.reddit.com/r/HindutvaRises/comments/14z93zs/be_a_seeker_like_arjuna_embracing_the_path_of/
539                          https://www.reddit.com/r/HindutvaRises/comments/14yl9x4/day_2_ll_60_$/\027_65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
540                                                  https://www.reddit.com/r/HindutvaRises/comments/14yeijz/hindu_supremacy_and_why_not_ft_&65$0/
541                                      https://www.reddit.com/r/HindutvaRises/comments/14ydoas/hindu_scriptures_unlocking_the_rich_heritage_and/
542                          https://www.reddit.com/r/HindutvaRises/comments/14xpg6h/day_1_ll_60_$/\027_65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
543                                                               https://www.reddit.com/r/HindutvaRises/comments/14xmzcy/\0252*\025_07\0370_&06(/
544                                         https://www.reddit.com/r/HindutvaRises/comments/14xg0pk/krishnas_departure_and_reincarnation_a_divine/
545                                       https://www.reddit.com/r/HindutvaRises/comments/14ww0f4/exhindu_more_like_a_bunch_of_clowns_how_easy_it/
546                                       https://www.reddit.com/r/HindutvaRises/comments/14wuewo/day_07_ll_shiv_mahapuran_pradeep_mishra_live_ll/
547                                                                             https://www.reddit.com/r/HindutvaRises/comments/14wmqrh/tolerence/
548                                         https://www.reddit.com/r/HindutvaRises/comments/14wiih1/the_significance_of_bel_leaves_for_worshiping/
549                           https://www.reddit.com/r/HindutvaRises/comments/14vto6x/day_06_ll_60_,09._65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
550                                       https://www.reddit.com/r/HindutvaRises/comments/14vn0m4/nine_steps_of_hindu_devotion_unlocking_the_path/
551                            https://www.reddit.com/r/HindutvaRises/comments/14uy7ex/day_5_ll_60_,09._65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
552                                        https://www.reddit.com/r/HindutvaRises/comments/14ulz03/bollywood_to_make_this_movie_kajal_hindusthani/
553                                     https://www.reddit.com/r/HindutvaRises/comments/14u37gg/bhrama_shiv_purana_day_4_60_,09._65.9*0#_\025%_ll/
554                                     https://www.reddit.com/r/HindutvaRises/comments/14twprd/you_wont_help_us_when_we_need_but_after_3_decades/
555                                      https://www.reddit.com/r/HindutvaRises/comments/14tw7q4/what_does_sri_krishna_say_about_happiness_in_the/
556                           https://www.reddit.com/r/HindutvaRises/comments/14t6gdu/day_03_ll_60_,09._65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
557     https://www.reddit.com/r/HindutvaRises/comments/14sz91e/\0250\034_.\025$_\025_2\017_\t*/_*0&*_.60_\0250\034_.\025$_\025_2\017_\t*/_shivyu/
558                                     https://www.reddit.com/r/HindutvaRises/comments/14sz6pr/this_whole_narrative_has_been_repeated_many_times/
559                           https://www.reddit.com/r/HindutvaRises/comments/14sa9v1/day_02_ll_60_,09._65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
560                                                            https://www.reddit.com/r/HindutvaRises/comments/14s585u/bhagavad_gita_books_online/
561                                       https://www.reddit.com/r/HindutvaRises/comments/14s24j1/bhagavat_gita_chapter_2_verse_15_kannada_shorts/
562                                         https://www.reddit.com/r/HindutvaRises/comments/14s002q/enhance_your_spiritual_practice_with_the_shri/
563                            https://www.reddit.com/r/HindutvaRises/comments/14rk5qe/day_01ll_60_,09._65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
564                                         https://www.reddit.com/r/HindutvaRises/comments/14rc0z5/what_do_hindu_nationalists_think_about_indian/
565                                         https://www.reddit.com/r/HindutvaRises/comments/14r8ib4/how_to_simplify_your_satyanarayan_puja_book_a/
566                                        https://www.reddit.com/r/HindutvaRises/comments/14r6jxr/understanding_karma_and_dharma_in_the_bhagavad/
567                                      https://www.reddit.com/r/HindutvaRises/comments/14r141o/we_cant_depend_on_army_and_police_for_protection/
568                                       https://www.reddit.com/r/HindutvaRises/comments/14qzvie/meanings_of_jaati_varn_varg_gotra_and_kul_every/
569                                       https://www.reddit.com/r/HindutvaRises/comments/14q7fij/understanding_the_ego_liberation_through_shivas/
570                                        https://www.reddit.com/r/HindutvaRises/comments/14pizit/and_they_say_dravidians_arent_hindus_what_crap/
571                                     https://www.reddit.com/r/HindutvaRises/comments/14p8iqy/give_shastra_to_your_sisters_not_broom_marry_them/
572                                    https://www.reddit.com/r/HindutvaRises/comments/14p7z06/our_situation_is_an_outcome_of_the_choices_we_make/
573                                                  https://www.reddit.com/r/HindutvaRises/comments/14ok3bk/guru_are_we_ready_to_receive_him_her/
574                                         https://www.reddit.com/r/HindutvaRises/comments/14odsq8/welcome_to_the_land_of_historic_temples_built/
575                                          https://www.reddit.com/r/HindutvaRises/comments/14nspwf/two_tight_slaps_from_the_us_supreme_court_to/
576                                     https://www.reddit.com/r/HindutvaRises/comments/14mwnoz/what_if_i_told_you_that_alauddin_khiljis_daughter/
577                                           https://www.reddit.com/r/HindutvaRises/comments/14mrwya/the_place_and_significance_of_bhakti_in_the/
578                                                https://www.reddit.com/r/HindutvaRises/comments/14m57nj/do_most_hindu_nationalists_like_the_us/
579                                                 https://www.reddit.com/r/HindutvaRises/comments/14m3izm/story_of_sharanga_lord_vishnus_weapon/
580                                              https://www.reddit.com/r/HindutvaRises/comments/14lr0h4/bhaichara_gang_vs_hhs_balasaheb_thackrey/
581                                       https://www.reddit.com/r/HindutvaRises/comments/14lqfwc/exposing_the_lies_spread_by_lgbt_about_hinduism/
582                                           https://www.reddit.com/r/HindutvaRises/comments/14l9xai/embrace_divine_blessings_with_online_pandit/
583                                      https://www.reddit.com/r/HindutvaRises/comments/14l1oaf/exploring_the_various_modes_of_conception_in_the/
584                                     https://www.reddit.com/r/HindutvaRises/comments/14kg4bs/what_do_hindu_nationalists_think_about_israel_and/
585                                      https://www.reddit.com/r/HindutvaRises/comments/14kew33/there_is_always_worse_when_mohandas_is_concerned/
586                                      https://www.reddit.com/r/HindutvaRises/comments/14keh0k/how_to_choose_the_best_puja_kit_for_any_festival/
587                                                    https://www.reddit.com/r/HindutvaRises/comments/14k5tkc/the_power_of_symbolism_in_ramayana/
588                                                     https://www.reddit.com/r/HindutvaRises/comments/14k5c8p/genocide_is_happening_as_we_speak/
589                                       https://www.reddit.com/r/HindutvaRises/comments/14jjuwv/reportedly_an_ancient_temple_was_found_inside_a/
590                                                                                     https://www.reddit.com/r/HindutvaRises/comments/14jdgez/_/
591                                      https://www.reddit.com/r/HindutvaRises/comments/14jcnnq/embrace_tradition_with_convenience_puja_shopping/
592                                                              https://www.reddit.com/r/HindutvaRises/comments/14j9nf4/why_worship_lord_ganesha/
593                                          https://www.reddit.com/r/HindutvaRises/comments/14j5ahy/in_the_2020_indian_american_attitudes_survey/
594                                          https://www.reddit.com/r/HindutvaRises/comments/14i1b67/what_do_hindu_nationalists_think_about_sikhs/
595                                                          https://www.reddit.com/r/HindutvaRises/comments/14hq9bz/random_art_with_deep_meaning/
596                                                           https://www.reddit.com/r/HindutvaRises/comments/14hogzm/same_feeling_different_vibe/
597                                       https://www.reddit.com/r/HindutvaRises/comments/14hm0sb/the_role_and_significance_of_devotion_bhakti_in/
598                                                             https://www.reddit.com/r/HindutvaRises/comments/14hamx6/hinduism_is_truly_liberal/
599                                       https://www.reddit.com/r/HindutvaRises/comments/14h76yj/unmasking_love_jihad_the_dangerous_impact_of_an/
600                                                    https://www.reddit.com/r/HindutvaRises/comments/14givrn/the_curious_case_of_swami_agnivesh/
601                                       https://www.reddit.com/r/HindutvaRises/comments/14g0s70/embrace_spirituality_with_ease_convenience_shop/
602                                     https://www.reddit.com/r/HindutvaRises/comments/14fgdk1/need_help_for_context_seems_like_a_normal_islamic/
603                                         https://www.reddit.com/r/HindutvaRises/comments/14f6u7w/amazing_fight_scene_when_krishna_fought_arjun/
604                                             https://www.reddit.com/r/HindutvaRises/comments/14ey1q4/divided_by_nations_united_by_jagannathjai/
605                                                          https://www.reddit.com/r/HindutvaRises/comments/14e9hcv/process_to_make_a_muslim_guy/
606                                      https://www.reddit.com/r/HindutvaRises/comments/14e4uka/creating_divine_connections_book_a_pandit_online/
607                                     https://www.reddit.com/r/HindutvaRises/comments/14e41pg/the_spiritual_benefits_of_practicing_samkhya_yoga/
608                                                                      https://www.reddit.com/r/HindutvaRises/comments/14e3sj5/happy_rath_yatra/
609                                          https://www.reddit.com/r/HindutvaRises/comments/14e2m1j/celebration_of_ganesh_lakshmi_puja_on_diwali/
610                                         https://www.reddit.com/r/HindutvaRises/comments/14d7knl/incredible_powers_of_hanuman_you_need_to_know/
611                                                                      https://www.reddit.com/r/HindutvaRises/comments/14cpqux/truth_is_eternal/
612                                         https://www.reddit.com/r/HindutvaRises/comments/14cfmfd/my_message_as_a_hindu_to_rss_idiots_and_mohan/
613                                           https://www.reddit.com/r/HindutvaRises/comments/14cdt1x/is_our_culture_and_tradition_a_joke_to_them/
614                                                                           https://www.reddit.com/r/HindutvaRises/comments/14cb5zx/masterpiece/
615                                            https://www.reddit.com/r/HindutvaRises/comments/14bkk8d/9_timeless_lessons_from_the_ramayana_for_a/
616                                        https://www.reddit.com/r/HindutvaRises/comments/14bju3a/my_message_as_a_hindu_to_rss_chaddi_idiots_and/
617                                                https://www.reddit.com/r/HindutvaRises/comments/14apol9/the_power_of_om_understanding_its_deep/
618                                         https://www.reddit.com/r/HindutvaRises/comments/149x8si/exploring_the_nine_types_of_devotion_in_shiva/
619                                                                       https://www.reddit.com/r/HindutvaRises/comments/1495f3e/true_hindustani/
620                                        https://www.reddit.com/r/HindutvaRises/comments/148dzop/bal_hanuman_story_i_hope_it_will_make_your_day/
621                                                  https://www.reddit.com/r/HindutvaRises/comments/1489bwp/significance_of_hinduisms_holy_texts/
622                                            https://www.reddit.com/r/HindutvaRises/comments/147hbi2/the_importance_of_the_bhagavad_gita_in_the/
623                                                                                  https://www.reddit.com/r/HindutvaRises/comments/146lgwx/text/
624                                                                         https://www.reddit.com/r/HindutvaRises/comments/146g8in/jai_shree_ram/
625                             https://www.reddit.com/r/HindutvaRises/comments/15qs322/day_05_ll_60_*0%650_65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034/
626                                            https://www.reddit.com/r/HindutvaRises/comments/15qo1vq/unveiling_the_mythological_stories_popular/
627                                      https://www.reddit.com/r/HindutvaRises/comments/15qhz9n/what_do_hindu_nationalists_think_about_h1b_visas/
628                                                                         https://www.reddit.com/r/HindutvaRises/comments/15py9ot/fark_saaf_hai/
629                                      https://www.reddit.com/r/HindutvaRises/comments/15p3eg6/day_3_partheshwar_shiv_mahapuran_katha_60_*0%650/
630                                      https://www.reddit.com/r/HindutvaRises/comments/15o7dp1/day_2_partheshwar_shiv_mahapuran_katha_60_*0%650/
631                                       https://www.reddit.com/r/HindutvaRises/comments/15o0j6m/art_and_symbolism_in_hindu_temples_decoding_the/
632                                      https://www.reddit.com/r/HindutvaRises/comments/15npmm6/how_many_hindus_were_killed_by_aurangzeb_and_the/
633                                      https://www.reddit.com/r/HindutvaRises/comments/15naw3c/partheshwar_shiv_mahapuran_katha_day_1_*0%650_65/
634                                           https://www.reddit.com/r/HindutvaRises/comments/15n4fye/unveiling_the_symbolism_in_hindu_scriptures/
635                                     https://www.reddit.com/r/HindutvaRises/comments/15mi375/abdul_is_angry_claims_that_he_incurred_loss_of_10/
636                                     https://www.reddit.com/r/HindutvaRises/comments/15maybi/librandu_a_chomu_so_open_minded_their_brains_have/
637                                     https://www.reddit.com/r/HindutvaRises/comments/15maute/i_was_very_angry_while_making_this_video_on_rahul/
638                                                                        https://www.reddit.com/r/HindutvaRises/comments/15maiav/he_spoke_facts/
639                                     https://www.reddit.com/r/HindutvaRises/comments/15m8law/exploring_the_melodies_of_samaveda_ancient_chants/
640                                     https://www.reddit.com/r/HindutvaRises/comments/15lc6r0/delhi_services_bill_was_more_than_a_legilation_it/
641                                             https://www.reddit.com/r/HindutvaRises/comments/15la3q6/the_role_of_vedas_in_indian_culture_hindi/
642                                                                         https://www.reddit.com/r/HindutvaRises/comments/15l5zqy/veer_savarkar/
643                                       https://www.reddit.com/r/HindutvaRises/comments/15l5ka3/when_chacha_was_not_busy_mounting_he_would_spit/
644                                                        https://www.reddit.com/r/HindutvaRises/comments/15ksgep/its_not_fake_fraud_help_needed/
645                                          https://www.reddit.com/r/HindutvaRises/comments/15kmxa2/is_this_sort_of_behavior_the_norm_by_marathi/
646                                     https://www.reddit.com/r/HindutvaRises/comments/15kkt5l/goosebumps_if_not_for_sacrifices_of_kar_sewaks_do/
647                                  https://www.reddit.com/r/HindutvaRises/comments/15kk1ym/kawad_shiv_mahapuran_katha_day_7_\0255!_65_*0#_\025%/
648                                     https://www.reddit.com/r/HindutvaRises/comments/15kcyvk/exploring_the_sanskrit_language_decoding_bhagavad/
649                                                        https://www.reddit.com/r/HindutvaRises/comments/15jotei/we_need_a_neohindutva_movement/
650                                                                            https://www.reddit.com/r/HindutvaRises/comments/15jodd1/shri_munje/
651                            https://www.reddit.com/r/HindutvaRises/comments/15jo77p/kawad_shiv_mahapuran_katha_day_6_\0255!_65_*0#_\025%_\033 /
652                                                      https://www.reddit.com/r/HindutvaRises/comments/15jkoai/this_scene_has_a_special_fanbase/
653                                                           https://www.reddit.com/r/HindutvaRises/comments/15jjp7q/india_will_remain_ram_rajya/
654                                               https://www.reddit.com/r/HindutvaRises/comments/15jd2fi/5_\005\0278$_\025_&(_\025/_.9$5*0#_.(_9/
655                                                      https://www.reddit.com/r/HindutvaRises/comments/15jcrv2/ravish_kumar_rap_on_monu_manesar/
656                                                                         https://www.reddit.com/r/HindutvaRises/comments/15j07i0/hindu_culture/
657                                     https://www.reddit.com/r/HindutvaRises/comments/15iykuq/when_you_are_in_the_middle_of_gyanvapi_survey_and/
658                                                                    https://www.reddit.com/r/HindutvaRises/comments/15ivoc0/darr_ka_mahaul_hai/
659                                  https://www.reddit.com/r/HindutvaRises/comments/15iv0vx/day_5_kawad_shiv_mahapuran_katha_\0255!_65_*0#_\025%/
660                                                                https://www.reddit.com/r/HindutvaRises/comments/15isin9/pov_you_are_a_sanatani/
661                                     https://www.reddit.com/r/HindutvaRises/comments/15inv05/ancient_insights_for_contemporary_living_applying/
662                                     https://www.reddit.com/r/HindutvaRises/comments/15i1z8u/republic_world_nuh_truth_arnab_exposes_how_hindus/
663                            https://www.reddit.com/r/HindutvaRises/comments/15i0noi/day_4_kawad_shiv_mahapuran_katha_\0255!_65_*0#_\025%_\032%/
664                                               https://www.reddit.com/r/HindutvaRises/comments/15hxg9v/mahabharata_a_story_of_family_feuds_and/
665                         https://www.reddit.com/r/HindutvaRises/comments/15h3j68/day_03_ll_60_\0255!_65.9*0#_\025%_ll_*\034/_*!$_*0&*_\034_.60/
666                                                           https://www.reddit.com/r/HindutvaRises/comments/15gzt1k/peaceful_community_in_mewat/
667                                         https://www.reddit.com/r/HindutvaRises/comments/15gywbn/another_major_win_for_hindus_in_gyanvapi_case/
668                                        https://www.reddit.com/r/HindutvaRises/comments/15gwelm/shrimad_bhagwat_geetas_influence_on_indian_art/
669                                                                    https://www.reddit.com/r/HindutvaRises/comments/15gjlc7/ganesh_ji_ki_katha/
670                                                                           https://www.reddit.com/r/HindutvaRises/comments/15gf7oi/\034/_60_0./
671                                                             https://www.reddit.com/r/HindutvaRises/comments/15gdvrn/add_more_of_what_you_know/
672                                              https://www.reddit.com/r/HindutvaRises/comments/15gb76p/peaceful_community_doing_peaceful_things/
673                                                 https://www.reddit.com/r/HindutvaRises/comments/15g8d8s/yogi_ji_roasts_india_in_ani_interview/
674                                           https://www.reddit.com/r/HindutvaRises/comments/15g88ju/kawad_shiv_mahapuran_day_2_tilda_newra_shiv/
675                                      https://www.reddit.com/r/HindutvaRises/comments/15g8310/do_you_know_hindus_are_minority_in_many_parts_of/
676                                                                        https://www.reddit.com/r/HindutvaRises/comments/15g82er/((9_.((_\0349&/
677                                     https://www.reddit.com/r/HindutvaRises/comments/15g3hkg/exploring_vedic_deities_gods_and_goddesses_of_the/
678                                                                      https://www.reddit.com/r/HindutvaRises/comments/15g2fbm/thoughts_on_this/
679                                       https://www.reddit.com/r/HindutvaRises/comments/15g1n8v/i_feel_proud_to_be_hindu_because_of_these_chads/
680                                       https://www.reddit.com/r/HindutvaRises/comments/15fc8lr/day_1_kawad_shiv_mahapuran_katha_pradeep_mishra/
681                                       https://www.reddit.com/r/HindutvaRises/comments/15fc378/muslims_dont_want_hindus_in_mewat_the_bjp_never/
682                                       https://www.reddit.com/r/HindutvaRises/comments/15egw8i/lion_yogi_adityanath_wants_muslims_to_apologize/
683                                      https://www.reddit.com/r/HindutvaRises/comments/15e9bvw/lord_shivas_divine_identity_exploring_his_unique/
684                                                               https://www.reddit.com/r/HindutvaRises/comments/15e6tbk/solah_somvar_vrat_katha/
685                                                https://www.reddit.com/r/HindutvaRises/comments/15e06uu/do_most_hindu_nationalists_like_the_us/
686                                     https://www.reddit.com/r/HindutvaRises/comments/15dnvom/the_british_and_modern_liberals_have_ensured_that/
687                                                   https://www.reddit.com/r/HindutvaRises/comments/15dk8ak/the_brahmin_genocide_in_maharashtra/
688                                          https://www.reddit.com/r/HindutvaRises/comments/15djl74/trueindology_begs_for_his_life_from_devendra/
689                                     https://www.reddit.com/r/HindutvaRises/comments/15crejg/tight_slap_from_narendra_modi_to_china_on_stapled/
690                                                 https://www.reddit.com/r/HindutvaRises/comments/15cot3u/what_a_tremendous_performance_yogi_ji/
691                                           https://www.reddit.com/r/HindutvaRises/comments/15counw/massive_blow_to_people_who_worship_the_dead/
692                                          https://www.reddit.com/r/HindutvaRises/comments/15coy40/meet_isis_terrorist_adnan_sarkar_who_plotted/
693                                     https://www.reddit.com/r/HindutvaRises/comments/15clwik/hindu_deities_gods_each_day_of_the_week_dedicated/
694                                                https://www.reddit.com/r/HindutvaRises/comments/15bx4tv/*0&*_.60_\025_\006\034_\025_\025%_2023/
695                                            https://www.reddit.com/r/HindutvaRises/comments/15bpb58/there_was_no_terrorism_and_genocide_of_the/
696                                     https://www.reddit.com/r/HindutvaRises/comments/15btbth/krishna_and_dhritrashtra_also_did_love_jihad_says/
697                                    https://www.reddit.com/r/HindutvaRises/comments/15brtvn/devendra_fadnavis_wants_hindu_thought_leaders_dead/
698                                                                                     https://www.reddit.com/r/HindutvaRises/comments/15br2ki/_/
699                                       https://www.reddit.com/r/HindutvaRises/comments/15bnv0t/this_hindu_tigress_has_taken_karnataka_by_storm/
700                                        https://www.reddit.com/r/HindutvaRises/comments/15bg897/how_would_muslims_and_christians_be_treated_in/
701                                          https://www.reddit.com/r/HindutvaRises/comments/15bbvfc/discussion_so_guys_i_got_dm_ab_this_cult_his/
702                                        https://www.reddit.com/r/HindutvaRises/comments/15b3gm9/discover_the_convenience_of_shopping_from_puja/
703                                    https://www.reddit.com/r/HindutvaRises/comments/15b1pe3/day_6_$*_65_.9_*0#_\025%_tap_shiv_maha_puran_katha/
704                                     https://www.reddit.com/r/HindutvaRises/comments/15auaxp/why_did_lord_ganesha_adopt_the_rat_as_his_vehicle/
705                                                https://www.reddit.com/r/HindutvaRises/comments/15a5pei/*0&*_.60_\025_2\a5_\025%_\006\034_\025/
706                                                 https://www.reddit.com/r/HindutvaRises/comments/15a3bwv/hanuman_ji_drawing_jai_shri_ram_hindu/
707                                                                          https://www.reddit.com/r/HindutvaRises/comments/159grn5/save_mahadev/
708                                    https://www.reddit.com/r/HindutvaRises/comments/159fngv/what_do_hindu_nationalists_think_about_eating_meat/
709                                    https://www.reddit.com/r/HindutvaRises/comments/1598fes/day_4_60_$*_65_*0#_\025%_9&_._shri_shiv_maha_puran/
710                                                                     https://www.reddit.com/r/HindutvaRises/comments/158vtfl/bhajarangbali_art/
711                                      https://www.reddit.com/r/HindutvaRises/comments/158apoj/day_03_tap_shiv_mahapuran_pradeep_mishra_live_65/
712                                          https://www.reddit.com/r/HindutvaRises/comments/1583ua6/the_main_message_of_the_upanishads_explained/
713                                                                https://www.reddit.com/r/HindutvaRises/comments/1583l3c/ask_llama_lord_krishna/
714                                         https://www.reddit.com/r/HindutvaRises/comments/1582rq4/oppenheimer_sex_bhagwad_gita_and_our_fixation/
715                                                      https://www.reddit.com/r/HindutvaRises/comments/1582lkw/oppenheimer_sells_movie_with_sex/
716                                      https://www.reddit.com/r/HindutvaRises/comments/157ufi9/subcontinent_converts_fancy_the_mazars_more_than/
717                                                                      https://www.reddit.com/r/HindutvaRises/comments/157i6jc/chad_rindiaplace/
718                                       https://www.reddit.com/r/HindutvaRises/comments/157eri1/day_2_tap_shiv_mahapuran_pradeep_mishra_live_65/
719                                      https://www.reddit.com/r/HindutvaRises/comments/157bnnw/taking_some_creative_liberty_to_make_oppenheimer/
720                                      https://www.reddit.com/r/HindutvaRises/comments/1574f4x/all_nationalist_indians_if_you_care_about_bharat/
721                                                                     https://www.reddit.com/r/HindutvaRises/comments/156sldf/chad_rindia_place/
722                                       https://www.reddit.com/r/HindutvaRises/comments/156n0dp/day_1_tap_shiv_mahapuran_pradeep_mishra_live_65/
723                                                                          https://www.reddit.com/r/HindutvaRises/comments/156evsu/shri_krishna/
724                                      https://www.reddit.com/r/HindutvaRises/comments/156avt3/the_hindu_matrix_scientific_evidence_for_puranas/
725          https://www.reddit.com/r/HindutvaRises/comments/16uk04m/\025/_,2_60_\0257#_(_\0050\034(_8_\034,_\0250#_(_.\027_\005*(_*0#_\025_-\026/
726                                            https://www.reddit.com/r/HindutvaRises/comments/16uebq2/what_is_the_term_for_religious_devotion_in/
727                                                                              https://www.reddit.com/r/HindutvaRises/comments/16u8mhg/ma_durga/
728                                          https://www.reddit.com/r/HindutvaRises/comments/16u5m9a/chad_hindus_in_australia_no_stone_pelting_no/
729                                                                   https://www.reddit.com/r/HindutvaRises/comments/16tgcty/namaste_from_bharat/
730                                       https://www.reddit.com/r/HindutvaRises/comments/16tdsu9/the_eighteenth_chapter_of_shrimad_bhagwat_geeta/
731                                                  https://www.reddit.com/r/HindutvaRises/comments/16skuwm/why_does_hinduism_have_multiple_gods/
732                                         https://www.reddit.com/r/HindutvaRises/comments/16rv974/27_temples_have_been_destroyed_to_build_qutub/
733                                    https://www.reddit.com/r/HindutvaRises/comments/16rpfmb/introduction_to_ayurveda_an_ancient_healing_system/
734                                                  https://www.reddit.com/r/HindutvaRises/comments/16rpf86/bajrang_bali_saves_city_of_shree_ram/
735                                      https://www.reddit.com/r/HindutvaRises/comments/16rnc8v/sanatan_means_eternal_and_here_is_a_700_year_old/
736                                                https://www.reddit.com/r/HindutvaRises/comments/16r1vvh/who_said_he_wouldnt_rock_in_saffron_on/
737                                           https://www.reddit.com/r/HindutvaRises/comments/16qnzes/ganesh_mantra_with_english_translation_must/
738    https://www.reddit.com/r/HindutvaRises/comments/16q974z/\025/_.92\023_\025_6.6(_._\034(_50\034$_9$_9_\034(_\0250_90(_09_\034\017\027_\006*/
739                                        https://www.reddit.com/r/HindutvaRises/comments/16q1bhx/and_here_starts_a_weekend_of_woes_for_liberals/
740                                            https://www.reddit.com/r/HindutvaRises/comments/16q18ki/sanatan_dharma_beyond_our_borders_ganapati/
741                                              https://www.reddit.com/r/HindutvaRises/comments/16q16t2/mission_tamil_nadu_a_tsunami_of_hindutva/
742                                                         https://www.reddit.com/r/HindutvaRises/comments/16q161d/har_har_mahadev_from_varanasi/
743                                                         https://www.reddit.com/r/HindutvaRises/comments/16pzyd7/what_is_the_hindu_sacred_text/
744                                        https://www.reddit.com/r/HindutvaRises/comments/16p6o84/5_valuable_life_lessons_that_we_can_all_derive/
745                                        https://www.reddit.com/r/HindutvaRises/comments/16p32ym/how_sikh_separatism_and_alleged_assassinations/
746                                                             https://www.reddit.com/r/HindutvaRises/comments/16nszqd/legal_assistance_required/
747                                                 https://www.reddit.com/r/HindutvaRises/comments/16nizdj/puranas_unveiling_the_legends_of_gods/
748                                                                         https://www.reddit.com/r/HindutvaRises/comments/16nerop/why_celebrate/
749                                         https://www.reddit.com/r/HindutvaRises/comments/16mpsia/unlocking_the_path_to_spiritual_enlightenment/
750                                                    https://www.reddit.com/r/HindutvaRises/comments/16mdtgb/is_bollywood_prohindu_or_antihindu/
751                                        https://www.reddit.com/r/HindutvaRises/comments/16m3duu/bangladesh_cricketer_tanzim_hasan_shakib_under/
752                                        https://www.reddit.com/r/HindutvaRises/comments/16lof1s/7_benefits_of_decorating_pooja_room_with_brass/
753                        https://www.reddit.com/r/HindutvaRises/comments/16l40jh/\025/_,0_2\027_\025_,0_5\025$_._9_'0.\0250._\025_,$_/&_\006$_9/
754                             https://www.reddit.com/r/HindutvaRises/comments/16l125m/60_8&'5(/\025_.$0_\0240_\0060$_shree_siddhivinayak_mantra/
755                                                                   https://www.reddit.com/r/HindutvaRises/comments/16kwrhz/happy_birthday_king/
756                                       https://www.reddit.com/r/HindutvaRises/comments/16k1o5w/the_power_of_faith_hindi_books_that_deepen_your/
757                                                   https://www.reddit.com/r/HindutvaRises/comments/16jzjfc/httpsredditcomrhindumemeszfhk4etesx/
758                                                                    https://www.reddit.com/r/HindutvaRises/comments/16jd32m/rjaihind_jaibharat/
759                                          https://www.reddit.com/r/HindutvaRises/comments/16j9deg/ramayana_in_art_and_culture_a_visual_journey/
760                                          https://www.reddit.com/r/HindutvaRises/comments/16ies3f/hindi_diwas_promoting_language_diversity_and/
761                                           https://www.reddit.com/r/HindutvaRises/comments/16ibcda/vagdevi_goddess_saraswati_idol_found_by_the/
762                                      https://www.reddit.com/r/HindutvaRises/comments/16i9ab0/arvind_kejriwal_opposed_promotion_of_the_kashmir/
763                                       https://www.reddit.com/r/HindutvaRises/comments/16i8qyt/the_1st_c295_tactical_transport_aircraft_handed/
764              https://www.reddit.com/r/HindutvaRises/comments/16hrf48/\025/_8\032.\032_-\0275(_65_-\027_*$_%_\025/_9_8$/_8\032_._/9_9_\025/_-2/
765                                       https://www.reddit.com/r/HindutvaRises/comments/16hiw4m/the_sacred_trio_of_hinduism_brahma_vishnu_shiva/
766                                        https://www.reddit.com/r/HindutvaRises/comments/16hfg3v/the_vibrant_tapestry_of_diwali_2023_causes_and/
767                                      https://www.reddit.com/r/HindutvaRises/comments/16gn2p0/sacred_stories_legends_and_myths_from_hindu_holy/
768                                                                             https://www.reddit.com/r/HindutvaRises/comments/16gmptc/yet_again/
769                                               https://www.reddit.com/r/HindutvaRises/comments/16gmo76/kuldeep_alone_ruined_paxtanis_arrogance/
770                                          https://www.reddit.com/r/HindutvaRises/comments/16g1htj/hi_im_exmuslim_would_love_to_connect_with_my/
771                                              https://www.reddit.com/r/HindutvaRises/comments/16frtrw/devotion_and_rituals_how_shiv_maha_puran/
772                                               https://www.reddit.com/r/HindutvaRises/comments/16f1vmp/krishna_gets_angry_on_arjuna_mahabharat/
773                                                        https://www.reddit.com/r/HindutvaRises/comments/16f1awf/modis_look_for_next_g20_summit/
774                                                         https://www.reddit.com/r/HindutvaRises/comments/16f18qs/thats_why_commies_hate_bharat/
775                                              https://www.reddit.com/r/HindutvaRises/comments/16eu0ey/krishna_shows_his_virata_avatar_to_arjun/
776                                       https://www.reddit.com/r/HindutvaRises/comments/16ehhfr/patriotism_is_fundamentally_a_conviction_that_a/
777     https://www.reddit.com/r/HindutvaRises/comments/16ea3eo/65_\025_\0345(_\025_*\032_,$\034_\006*\025_\0345(_._8+2$_*(_._.&&_\0250\027_\0240/
778                                     https://www.reddit.com/r/HindutvaRises/comments/16dzati/im_giving_written_references_because_without_them/
779                                                                       https://www.reddit.com/r/HindutvaRises/comments/16df1gr/rss_initiatives/
780                                            https://www.reddit.com/r/HindutvaRises/comments/16d7s83/500_.2_$_\006_\027/_$_\0208_-!_,"_09_25#80/
781                                      https://www.reddit.com/r/HindutvaRises/comments/16d6z9r/old_video_but_one_more_foreigner_treated_harshly/
782                                       https://www.reddit.com/r/HindutvaRises/comments/16d6ohs/deciphering_sanskrit_an_introduction_to_reading/
783                                              https://www.reddit.com/r/HindutvaRises/comments/16d05t0/dhimmihain_dhimmirahenge_bjphindudhimmis/
784                                     https://www.reddit.com/r/HindutvaRises/comments/16cbvop/the_spiritual_significance_of_lord_krishnas_flute/
785                                     https://www.reddit.com/r/HindutvaRises/comments/16c6ils/jai_shri_krishna_shri_krishn_janmashtami_ki_aapko/
786                                                        https://www.reddit.com/r/HindutvaRises/comments/16c6hek/krishna_saves_arjun_from_indra/
787                                          https://www.reddit.com/r/HindutvaRises/comments/16c2eq2/ahmadi_doing_tabligh_maliciously_attacked_in/
788                                          https://www.reddit.com/r/HindutvaRises/comments/16c2eps/ahmadi_doing_tabligh_maliciously_attacked_in/
789                                     https://www.reddit.com/r/HindutvaRises/comments/16bgmyt/we_are_bhartiya_bharat_is_our_real_and_indigenous/
790                                                 https://www.reddit.com/r/HindutvaRises/comments/16bfxm2/timeless_wisdom_from_hindu_scriptures/
791                             https://www.reddit.com/r/HindutvaRises/comments/16atlxe/65_-\0275(_(_\025/_%_2\025_\025_(0.#_05#_(_(9_shivramayan/
792                                                                https://www.reddit.com/r/HindutvaRises/comments/16aotbr/he_is_a_true_patriot_w/
793                                                        https://www.reddit.com/r/HindutvaRises/comments/16aj2c7/the_main_purpose_of_upanishads/
794                                      https://www.reddit.com/r/HindutvaRises/comments/169dagl/the_inhumane_conditions_of_dubais_indian_migrant/
795                                      https://www.reddit.com/r/HindutvaRises/comments/167vecf/definitely_it_will_give_scientific_edge_to_space/
796                                              https://www.reddit.com/r/HindutvaRises/comments/166zsrb/divine_relationships_in_the_puranas_gods/
797                                https://www.reddit.com/r/HindutvaRises/comments/166j81r/klesh_nashak_mantra_\023._\0257#/_58&5/_108_,0_krishna/
798                                        https://www.reddit.com/r/HindutvaRises/comments/166cvnn/pm_modi_ji_has_decided_rs_200_reduction_in_the/
799                                                                                     https://www.reddit.com/r/HindutvaRises/comments/166c5d1/_/
800                                           https://www.reddit.com/r/HindutvaRises/comments/1663rfg/navigating_spiritual_insights_understanding/
801                                      https://www.reddit.com/r/HindutvaRises/comments/1657zqq/great_liar_deceitful_kejriwal_he_is_stealing_all/
802 https://www.reddit.com/r/HindutvaRises/comments/1657wtr/.2/._89_/&5_\025_9&\023_\025_\0262+_\017\025_\0240_\0250$$_\0262$_2\0252_\0257$0_\025/
803                                    https://www.reddit.com/r/HindutvaRises/comments/1657wge/\006\0260_line_._$_kejriwal_\025_'\027_\0262_&\017/
804                                             https://www.reddit.com/r/HindutvaRises/comments/164b04f/ganesha_idols_in_vastu_shastra_channeling/
805                                        https://www.reddit.com/r/HindutvaRises/comments/161wex4/nepal_is_in_brink_civil_war_due_to_the_adibasi/
806                                           https://www.reddit.com/r/HindutvaRises/comments/161nl17/mahabharata_in_art_and_culture_influence_on/
807        https://www.reddit.com/r/HindutvaRises/comments/16139x2/\0258_9\b_0&0\0257_\025_\t$*$_\025/_9_65_\025_0&0\0257_*8&_0&0\0257_\025_*\034/
808                                     https://www.reddit.com/r/HindutvaRises/comments/160sa7x/exploring_different_versions_of_ramayana_cultural/
809                                        https://www.reddit.com/r/HindutvaRises/comments/15zwhml/vedic_ethics_and_moral_values_lessons_from_the/
810                                        https://www.reddit.com/r/HindutvaRises/comments/15zwhmf/vedic_ethics_and_moral_values_lessons_from_the/
811                                      https://www.reddit.com/r/HindutvaRises/comments/15ywvn4/journey_through_the_upanishads_understanding_the/
812                                                                          https://www.reddit.com/r/HindutvaRises/comments/15ykdw6/jai_shri_ram/
813                                     https://www.reddit.com/r/HindutvaRises/comments/15xxbnb/transformative_learning_how_the_bhagavad_gita_can/
814                                              https://www.reddit.com/r/HindutvaRises/comments/15x2ndk/nagpanchami_artistry_exploring_paintings/
815                                         https://www.reddit.com/r/HindutvaRises/comments/15x0caf/nagpanchami_a_journey_into_hindu_mythological/
816                     https://www.reddit.com/r/HindutvaRises/comments/15wd4uy/\0258_9\006_\032&0._65\034_\025_80_*0_50\034.(_shiva_shiv_mahadev/
817                                                          https://www.reddit.com/r/HindutvaRises/comments/15wcx1b/60.&_-\0275$_\027$_\005'//_h/
818                                      https://www.reddit.com/r/HindutvaRises/comments/15v94y3/unveiling_the_mind_exploring_philosophy_in_hindi/
819                                        https://www.reddit.com/r/HindutvaRises/comments/15ucqk7/ramayanas_relevance_in_modern_hinduism_beliefs/
820                                           https://www.reddit.com/r/HindutvaRises/comments/15tjx9a/tulsi_akhara_where_ancient_indian_wrestling/
821                                           https://www.reddit.com/r/HindutvaRises/comments/15tjrki/tulsi_akhara_where_ancient_indian_wrestling/
822                                           https://www.reddit.com/r/HindutvaRises/comments/15su2ol/lawyers_here_send_this_guy_legal_notice_for/
823                                     https://www.reddit.com/r/HindutvaRises/comments/15si9z8/the_bhagavad_gitas_perspective_on_dharma_living_a/
824         https://www.reddit.com/r/HindutvaRises/comments/15saiwx/by_\0258_9\b_.9.$/\034/_.$0_\025_\026\034_/9_.$0_\0250\027_\006*\025_80_0\027/
825                                           https://www.reddit.com/r/HindutvaRises/comments/18czzfp/heres_what_navyanabuddhists_dont_understand/
826                                                    https://www.reddit.com/r/HindutvaRises/comments/18cuyd1/the_secret_of_kamakhya_devi_temple/
827                                      https://www.reddit.com/r/HindutvaRises/comments/18cmkow/these_saints_have_no_knowledge_of_the_scriptures/
828                  https://www.reddit.com/r/HindutvaRises/comments/18bw138/6\0250\0320/_\005&5$(\025_\0250\025\037_\t((_8,'_untold_stories_from/
829                                                                               https://www.reddit.com/r/HindutvaRises/comments/18bu6nh/60/_&58/
830                                                                          https://www.reddit.com/r/HindutvaRises/comments/18bf4id/rise_o_hindu/
831                                                 https://www.reddit.com/r/HindutvaRises/comments/18bdgcy/6th_december_shaurya_diwas_kar_sewaks/
832                                             https://www.reddit.com/r/HindutvaRises/comments/18bawiw/biggest_status_of_lord_shiva_for_devotees/
833                                          https://www.reddit.com/r/HindutvaRises/comments/18b5lzb/story_of_pippalada_avatars_of_shiva_karthika/
834                                                            https://www.reddit.com/r/HindutvaRises/comments/18agajk/pashupathi_avatar_of_shiva/
835                                               https://www.reddit.com/r/HindutvaRises/comments/188u9pn/\006\034_\025_$\034_\034\026._9&07\0370/
836                      https://www.reddit.com/r/HindutvaRises/comments/1882t1b/yanthindh_5\037\027!(_0\034(_\0328(_\025'_the_story_of_yanthindh/
837                                      https://www.reddit.com/r/HindutvaRises/comments/187t6r2/report_hinduphobia_hinduphobic_page_on_instagram/
838                                      https://www.reddit.com/r/HindutvaRises/comments/187lor9/why_should_you_read_women_and_sabarimala_by_sinu/
839                              https://www.reddit.com/r/HindutvaRises/comments/186ieei/&6.95&/2_\005\037_\017.\037_dasha_mahavidya_significance/
840                                                  https://www.reddit.com/r/HindutvaRises/comments/185xz3h/sanatana_dharma_is_made_for_humanity/
841                      https://www.reddit.com/r/HindutvaRises/comments/1846qet/\025/_9&_'0._._108_\005\025_\025_9_\a$(_.9$5$$_\025/_108_&(_9_9$/
842                                                                      https://www.reddit.com/r/HindutvaRises/comments/183b4ie/mahabharat_story/
843                                                                            https://www.reddit.com/r/HindutvaRises/comments/181ully/ram_mandir/
844                                                                       https://www.reddit.com/r/HindutvaRises/comments/181hdn5/har_har_mahadev/
845                                                                               https://www.reddit.com/r/HindutvaRises/comments/1814hzv/exposed/
846                                                                               https://www.reddit.com/r/HindutvaRises/comments/1814h52/exposed/
847                                                                            https://www.reddit.com/r/HindutvaRises/comments/1814gt0/ram_mandir/
848                                                                                  https://www.reddit.com/r/HindutvaRises/comments/18127fh/1971/
849                                          https://www.reddit.com/r/HindutvaRises/comments/180mf4u/kyu_india_k_har_pe_bangladeshi_mana_rha_jasn/
850                                                                     https://www.reddit.com/r/HindutvaRises/comments/180acz9/frustrations_real/
851                                       https://www.reddit.com/r/HindutvaRises/comments/1809wo5/kashi_football_club_vs_mohammedan_football_club/
852                                                                           https://www.reddit.com/r/HindutvaRises/comments/17zef4y/jao_haumana/
853                                                                          https://www.reddit.com/r/HindutvaRises/comments/17y7cz4/ram_siya_ram/
854                                                     https://www.reddit.com/r/HindutvaRises/comments/17vsh29/top_5_mysterious_temples_of_india/
855                                         https://www.reddit.com/r/HindutvaRises/comments/17v0bcm/dev_deepawali_celebrating_bhakti_with_bhagwan/
856                                                     https://www.reddit.com/r/HindutvaRises/comments/17uveyd/krishna_protects_all_his_devotees/
857                                                                https://www.reddit.com/r/HindutvaRises/comments/17ubvay/appeal_to_all_bhartiya/
858                      https://www.reddit.com/r/HindutvaRises/comments/17u4ovj/\a(_**_\025_(9_\0250$_-\0275(_65_.+_&$_9_\025 0_&#!_(,0_4_\03400/
859                                                    https://www.reddit.com/r/HindutvaRises/comments/17typ17/revisiting_decolonisation_of_india/
860                                         https://www.reddit.com/r/HindutvaRises/comments/17rqtgi/peaceful_and_tolerant_community_strikes_again/
861                                           https://www.reddit.com/r/HindutvaRises/comments/17ppgzr/astrologer_mukesh_vats_prediction_bhavishay/
862                                                                  https://www.reddit.com/r/HindutvaRises/comments/17p8a0y/how_did_om_originate/
863              https://www.reddit.com/r/HindutvaRises/comments/17o8xu7/\0258_9\b_652\027_\025_\t$*$$_\025/_\032"/_\034$_9_652\027_*0_\0342_shiv/
864                                     https://www.reddit.com/r/HindutvaRises/comments/17nfnfp/the_blue_part_is_only_1_nonislamic_country_in_the/
865                                     https://www.reddit.com/r/HindutvaRises/comments/17mqqwy/balancing_energies_where_to_position_your_lakshmi/
866                                          https://www.reddit.com/r/HindutvaRises/comments/17m2g1v/enhance_your_prosperity_how_worshipping_lord/
867                                          https://www.reddit.com/r/HindutvaRises/comments/17k9v5b/a_solution_to_unite_all_hindus_sanatanis_all/
868                    https://www.reddit.com/r/HindutvaRises/comments/17j0ncg/90_0\034_P_(._65/_\025_\034*_8_\006*\025_\0345(_._\025/_*0-5_*!$_9/
869                                                                               https://www.reddit.com/r/HindutvaRises/comments/17i8iep/general/
870                                            https://www.reddit.com/r/HindutvaRises/comments/17i81q6/no_wonder_modi_want_to_remove_muslims_from/
871                                                 https://www.reddit.com/r/HindutvaRises/comments/17hrvi5/becoming_vedic_sanatani_from_exmuslim/
872                                        https://www.reddit.com/r/HindutvaRises/comments/17hrdx3/how_to_become_vedic_santani_dharma_yoddha_yati/
873                                             https://www.reddit.com/r/HindutvaRises/comments/17g7x1y/problems_and_its_solutions_hanumanchalisa/
874        https://www.reddit.com/r/HindutvaRises/comments/17g45ag/.9-0$_\0270%_\025_\005(80_\026(_\026(_\025_(/._\025/_*$_*$(_\025_\017\025_%2_./
875                                      https://www.reddit.com/r/HindutvaRises/comments/17f6ylo/805607 _/&'_\0250#_the_best_warrior_karna_shorts/
876                                             https://www.reddit.com/r/HindutvaRises/comments/17eqoh6/805607 _/&'_\0250#_the_best_warrior_karna/
877                                                     https://www.reddit.com/r/HindutvaRises/comments/17ejfvu/dailty_hindu_quotes_app_sansearch/
878                                     https://www.reddit.com/r/HindutvaRises/comments/17ecayr/win_your_inner_battles_with_this_musical_bhagavad/
879         https://www.reddit.com/r/HindutvaRises/comments/17d1rwu/-\0275(_65_(_,$\b_%_\0252/\027_8_\034!_*\032_,!_,$_\0348_\034(\0250_\006*\025/
880                                                https://www.reddit.com/r/HindutvaRises/comments/17czjjm/bhagwan_shiva_foretells_ravanas_demise/
881                                        https://www.reddit.com/r/HindutvaRises/comments/17bfhuo/the_24_tattvas_of_creation_in_samkhya_darshana/
882                                               https://www.reddit.com/r/HindutvaRises/comments/17akqb7/hinduism_the_role_of_shakti_in_creation/
883                                                                  https://www.reddit.com/r/HindutvaRises/comments/17agd0e/navratri_aura_part_2/
884                                               https://www.reddit.com/r/HindutvaRises/comments/179y6gk/the_most_spiritual_temple_of_lord_shiva/
885                                                               https://www.reddit.com/r/HindutvaRises/comments/179a4kk/nine_forms_of_maa_durga/
886                                                      https://www.reddit.com/r/HindutvaRises/comments/17951ik/happy_navratri_to_alljai_mata_di/
887                                                       https://www.reddit.com/r/HindutvaRises/comments/178zw5i/do_you_agree_with_geeta_lessons/
888                                      https://www.reddit.com/r/HindutvaRises/comments/178949m/jai_shree_ram_tattoo_in_3d_do_not_copy_by_one_of/
889                                      https://www.reddit.com/r/HindutvaRises/comments/177j41f/how_does_this_have_anything_to_do_with_hindus_or/
890                                           https://www.reddit.com/r/HindutvaRises/comments/176yyzr/the_necessity_to_believe_in_someone_supreme/
891                                       https://www.reddit.com/r/HindutvaRises/comments/1762a4i/how_the_upanishads_were_introduced_to_the_world/
892                                              https://www.reddit.com/r/HindutvaRises/comments/175ysit/learn_bharats_civilisation_through_comic/
893                                     https://www.reddit.com/r/HindutvaRises/comments/1759i5m/the_gayatri_mantra_demystified_your_path_to_inner/
894                                     https://www.reddit.com/r/HindutvaRises/comments/173m7me/unlocking_ancient_wisdom_the_fascinating_world_of/
895                                https://www.reddit.com/r/HindutvaRises/comments/172tg2l/'0._$_&(/_._\017\025_9_9_59_9_8($(_'0._8($(_'0._665$_5/
896                                        https://www.reddit.com/r/HindutvaRises/comments/172p4px/10_instances_in_india_where_islamic_structures/
897                                     https://www.reddit.com/r/HindutvaRises/comments/1718eig/china_pumps_10000_crores_into_indian_companies_to/
898                                     https://www.reddit.com/r/HindutvaRises/comments/1714htk/made_a_video_about_our_history_mahabharat_as_told/
899                                          https://www.reddit.com/r/HindutvaRises/comments/170fmap/-!_._\034/_-\b\0320_._$_\02552_8$/_\0259\027/
900                                           https://www.reddit.com/r/HindutvaRises/comments/170d5yt/the_unsung_vedas_discovering_lesserexplored/
901                                      https://www.reddit.com/r/HindutvaRises/comments/170ccbb/can_indiabharat_really_progress_and_be_developed/
902                                                        https://www.reddit.com/r/HindutvaRises/comments/16zepl5/our_country_our_responsibility/
903                                               https://www.reddit.com/r/HindutvaRises/comments/16ytlzg/bajrang_baan_hanuman_bhajan_with_lyrics/
904                                           https://www.reddit.com/r/HindutvaRises/comments/16yqzu5/gand_hi_inflicted_psychological_violence_on/
905                                                                                     https://www.reddit.com/r/HindutvaRises/comments/16yqwz7/_/
906                                        https://www.reddit.com/r/HindutvaRises/comments/16yqhg8/problems_with_the_recent_caste_census_in_bihar/
907                                                                 https://www.reddit.com/r/HindutvaRises/comments/16yq1km/aspects_of_lord_shiva/
908                                      https://www.reddit.com/r/HindutvaRises/comments/16xoimm/today_is_2nd_october_and_today_is_jayanti_of_lal/
909                                                          https://www.reddit.com/r/HindutvaRises/comments/16xog19/the_divine_lights_of_sanatan/
910                                                                          https://www.reddit.com/r/HindutvaRises/comments/16xof1c/8-_\025_,'\b/
911                                      https://www.reddit.com/r/HindutvaRises/comments/16xo8zx/the_original_lyrics_of_raghupati_raghav_raja_ram/
912                                                                    https://www.reddit.com/r/HindutvaRises/comments/16xo4vg/the_three_mistakes/
913                                      https://www.reddit.com/r/HindutvaRises/comments/16xo3pw/did_you_ever_think_why_there_is_not_a_single_big/
914                                       https://www.reddit.com/r/HindutvaRises/comments/16wxn8n/what_are_hindutva_and_hindu_rasthra_what_do_you/
915           https://www.reddit.com/r/HindutvaRises/comments/16wtg0j/\034_-\b\0320_\025_,$_\0250$_9_\t(9_*$_9(_\0329\017_0._.(&0_\025\b_\0260$_./
916                                                                       https://www.reddit.com/r/HindutvaRises/comments/16w2ykm/jai_hind_mitron/
917                                      https://www.reddit.com/r/HindutvaRises/comments/16w03dg/whether_human_or_animal_true_bhakti_is_all_thats/
918                                         https://www.reddit.com/r/HindutvaRises/comments/16w02oa/did_you_know_12_year_old_bhagat_singh_visited/
919                                      https://www.reddit.com/r/HindutvaRises/comments/16w01fs/ones_who_abuse_sanatan_dharma_deserve_this_place/
920                                      https://www.reddit.com/r/HindutvaRises/comments/16vzxr9/ambulance_given_way_during_ganapati_celebrations/
921                                                https://www.reddit.com/r/HindutvaRises/comments/16vdk9m/powerful_sun_mantra_music_surya_mantra/
922                                         https://www.reddit.com/r/HindutvaRises/comments/16v9rb6/sanatana_dharma_is_full_of_respect_compassion/
923                                          https://www.reddit.com/r/HindutvaRises/comments/16v9q09/ganesh_chaturthi_celebrations_in_usa_ganpati/
924                                         https://www.reddit.com/r/HindutvaRises/comments/16v9hag/the_culmination_of_a_500_years_long_fight_for/
docvars(india_corpus)
      date_utc  timestamp
1   2023-11-27 1701096951
2   2023-11-27 1701095266
3   2023-11-27 1701092472
4   2023-11-27 1701089321
5   2023-11-27 1701084272
6   2023-11-27 1701082188
7   2023-11-27 1701081406
8   2023-11-27 1701073900
9   2023-11-27 1701072621
10  2023-11-27 1701071480
11  2023-11-27 1701071453
12  2023-11-27 1701071157
13  2023-11-27 1701068571
14  2023-11-27 1701066999
15  2023-11-27 1701065947
16  2023-11-27 1701065695
17  2023-11-27 1701064926
18  2023-11-27 1701062690
19  2023-11-27 1701061572
20  2023-11-27 1701061266
21  2023-11-27 1701058486
22  2023-11-27 1701056849
23  2023-11-26 1700973330
24  2023-11-26 1700976453
25  2023-11-26 1700978836
26  2023-11-27 1701054837
27  2023-11-27 1701051607
28  2023-11-26 1701016767
29  2023-11-26 1701023854
30  2023-11-26 1701026742
31  2023-11-26 1701030523
32  2023-11-26 1701032763
33  2023-11-26 1701038863
34  2023-11-27 1701044953
35  2023-11-26 1701024946
36  2023-11-26 1701024723
37  2023-11-26 1701017295
38  2023-11-26 1701017137
39  2023-11-26 1701016970
40  2023-11-26 1701014402
41  2023-11-26 1701012449
42  2023-11-26 1701012424
43  2023-11-26 1700990554
44  2023-11-26 1700994246
45  2023-11-26 1700991100
46  2023-11-26 1700992052
47  2023-11-26 1700990996
48  2023-11-29 1701231259
49  2023-11-29 1701231084
50  2023-11-29 1701230959
51  2023-11-29 1701230356
52  2023-11-29 1701230170
53  2023-11-29 1701229241
54  2023-11-29 1701227478
55  2023-11-29 1701227207
56  2023-11-28 1701192698
57  2023-11-28 1701192633
58  2023-11-28 1701181287
59  2023-11-28 1701177287
60  2023-11-28 1701177176
61  2023-11-29 1701221960
62  2023-11-28 1701215011
63  2023-11-28 1701212227
64  2023-11-28 1701208432
65  2023-11-28 1701205410
66  2023-11-28 1701205381
67  2023-11-28 1701205072
68  2023-11-28 1701205027
69  2023-11-28 1701204868
70  2023-11-28 1701201726
71  2023-11-28 1701199185
72  2023-11-28 1701199026
73  2023-11-28 1701197072
74  2023-11-28 1701194533
75  2023-11-28 1701193997
76  2023-11-28 1701193272
77  2023-11-28 1701191138
78  2023-11-28 1701190002
79  2023-11-28 1701187795
80  2023-11-28 1701186899
81  2023-11-28 1701185553
82  2023-11-28 1701185041
83  2023-11-28 1701184580
84  2023-11-28 1701184442
85  2023-11-28 1701183306
86  2023-11-28 1701181499
87  2023-11-28 1701179876
88  2023-11-28 1701179664
89  2023-11-28 1701179638
90  2023-11-28 1701177037
91  2023-11-28 1701176812
92  2023-11-28 1701176677
93  2023-11-28 1701172266
94  2023-11-28 1701172624
95  2023-11-28 1701171594
96  2023-11-28 1701168547
97  2023-11-28 1701168342
98  2023-11-28 1701164752
99  2023-11-28 1701164492
100 2023-11-28 1701161189
101 2023-11-28 1701164384
102 2023-11-28 1701162396
103 2023-11-27 1701080541
104 2023-11-27 1701084194
105 2023-11-27 1701084890
106 2023-11-27 1701085721
107 2023-11-27 1701086408
108 2023-11-27 1701088180
109 2023-11-27 1701088468
110 2023-11-28 1701159691
111 2023-11-27 1701090638
112 2023-11-27 1701093521
113 2023-11-28 1701159255
114 2023-11-28 1701157774
115 2023-11-28 1701153384
116 2023-11-28 1701149896
117 2023-11-28 1701149850
118 2023-11-28 1701147954
119 2023-11-28 1701147308
120 2023-11-27 1701105643
121 2023-11-27 1701099711
122 2023-11-27 1701098167
123 2023-11-27 1701097436
124 2023-11-28 1701157523
125 2023-11-28 1701156244
126 2023-11-28 1701156195
127 2023-11-28 1701156182
128 2023-11-28 1701155892
129 2023-11-28 1701149944
130 2023-11-27 1701108170
131 2023-11-27 1701126054
132 2023-11-28 1701130833
133 2023-11-27 1701110120
134 2023-11-27 1701117628
135 2023-11-27 1701114665
136 2023-11-27 1701126158
137 2023-11-28 1701134284
138 2023-11-28 1701139104
139 2023-11-28 1701141756
140 2023-11-28 1701144381
141 2023-11-28 1701142951
142 2023-11-28 1701141358
143 2023-11-28 1701133965
144 2023-11-28 1701139279
145 2023-11-27 1701104480
146 2023-11-27 1701104330
147 2023-11-27 1701100538
148 2023-11-30 1701343763
149 2023-11-30 1701344054
150 2023-11-30 1701339193
151 2023-11-30 1701338028
152 2023-11-30 1701337376
153 2023-11-30 1701337080
154 2023-11-30 1701337046
155 2023-11-30 1701336507
156 2023-11-30 1701335522
157 2023-11-30 1701332097
158 2023-11-30 1701329502
159 2023-11-30 1701328366
160 2023-11-30 1701327011
161 2023-11-30 1701326797
162 2023-11-30 1701326685
163 2023-11-30 1701325540
164 2023-11-30 1701324344
165 2023-11-30 1701323300
166 2023-11-30 1701321376
167 2023-11-30 1701321351
168 2023-11-30 1701307793
169 2023-11-30 1701306823
170 2023-11-30 1701306263
171 2023-11-29 1701299497
172 2023-11-29 1701298751
173 2023-11-29 1701296790
174 2023-11-29 1701293583
175 2023-11-29 1701293468
176 2023-11-29 1701292771
177 2023-11-29 1701285704
178 2023-11-29 1701285466
179 2023-11-29 1701284204
180 2023-11-29 1701283572
181 2023-11-29 1701282238
182 2023-11-29 1701281634
183 2023-11-29 1701281522
184 2023-11-29 1701277942
185 2023-11-29 1701277124
186 2023-11-29 1701276447
187 2023-11-29 1701275158
188 2023-11-29 1701274963
189 2023-11-29 1701269913
190 2023-11-29 1701265746
191 2023-11-29 1701264970
192 2023-11-29 1701264230
193 2023-11-29 1701273626
194 2023-11-29 1701273258
195 2023-11-29 1701273227
196 2023-11-29 1701272977
197 2023-11-29 1701272921
198 2023-11-29 1701272800
199 2023-11-29 1701271725
200 2023-11-29 1701270440
201 2023-11-29 1701269866
202 2023-11-29 1701269478
203 2023-11-29 1701268158
204 2023-11-29 1701267961
205 2023-11-29 1701267672
206 2023-11-29 1701266827
207 2023-11-29 1701266490
208 2023-11-29 1701266489
209 2023-11-29 1701266154
210 2023-11-29 1701264082
211 2023-11-29 1701263996
212 2023-11-29 1701263944
213 2023-11-29 1701262918
214 2023-11-29 1701262906
215 2023-11-29 1701261180
216 2023-11-29 1701258443
217 2023-11-29 1701257187
218 2023-11-29 1701253717
219 2023-11-29 1701253507
220 2023-11-29 1701253307
221 2023-11-29 1701252598
222 2023-11-29 1701252341
223 2023-11-29 1701252227
224 2023-11-29 1701251801
225 2023-11-29 1701251679
226 2023-11-29 1701251400
227 2023-11-29 1701250148
228 2023-11-29 1701249876
229 2023-11-29 1701248557
230 2023-11-29 1701248310
231 2023-11-29 1701247972
232 2023-11-29 1701247494
233 2023-11-29 1701246593
234 2023-11-29 1701243369
235 2023-11-29 1701234339
236 2023-11-29 1701235307
237 2023-11-29 1701239811
238 2023-11-29 1701242226
239 2023-11-29 1701240213
240 2023-11-29 1701239809
241 2023-11-29 1701239461
242 2023-11-29 1701238963
243 2023-11-29 1701238792
244 2023-11-29 1701236744
245 2023-11-29 1701235541
246 2023-11-29 1701232488
247 2023-11-29 1701231795
248 2023-12-01 1701446077
249 2023-12-01 1701444475
250 2023-12-01 1701444175
251 2023-12-01 1701442718
252 2023-12-01 1701442365
253 2023-12-01 1701442327
254 2023-12-01 1701441588
255 2023-12-01 1701440866
256 2023-12-01 1701439562
257 2023-12-01 1701439257
258 2023-12-01 1701439199
259 2023-12-01 1701438978
260 2023-12-01 1701438512
261 2023-12-01 1701431242
262 2023-12-01 1701435242
263 2023-12-01 1701428473
264 2023-12-01 1701423434
265 2023-12-01 1701422230
266 2023-12-01 1701435625
267 2023-12-01 1701435190
268 2023-12-01 1701434989
269 2023-12-01 1701434184
270 2023-12-01 1701432458
271 2023-12-01 1701430788
272 2023-12-01 1701430731
273 2023-12-01 1701429806
274 2023-12-01 1701429771
275 2023-12-01 1701428182
276 2023-12-01 1701426494
277 2023-12-01 1701424421
278 2023-12-01 1701421421
279 2023-12-01 1701420389
280 2023-12-01 1701419350
281 2023-12-01 1701419185
282 2023-12-01 1701419144
283 2023-12-01 1701419131
284 2023-12-01 1701416972
285 2023-12-01 1701416246
286 2023-12-01 1701415586
287 2023-12-01 1701414838
288 2023-12-01 1701414785
289 2023-12-01 1701414066
290 2023-12-01 1701412059
291 2023-12-01 1701411765
292 2023-12-01 1701408189
293 2023-12-01 1701409309
294 2023-12-01 1701410511
295 2023-12-01 1701410974
296 2023-12-01 1701410420
297 2023-12-01 1701409055
298 2023-12-01 1701408824
299 2023-11-30 1701363536
300 2023-11-30 1701362973
301 2023-11-30 1701362846
302 2023-11-30 1701384330
303 2023-12-01 1701396074
304 2023-12-01 1701398781
305 2023-11-30 1701369344
306 2023-12-01 1701404461
307 2023-12-01 1701406992
308 2023-12-01 1701405776
309 2023-12-01 1701404397
310 2023-12-01 1701403865
311 2023-12-01 1701401705
312 2023-12-01 1701401212
313 2023-12-01 1701400228
314 2023-12-01 1701396426
315 2023-12-01 1701389317
316 2023-11-30 1701387842
317 2023-11-30 1701379997
318 2023-11-30 1701375732
319 2023-11-30 1701373590
320 2023-11-30 1701372702
321 2023-11-30 1701368892
322 2023-11-30 1701368374
323 2023-11-30 1701358557
324 2023-11-30 1701365395
325 2023-11-30 1701367400
326 2023-11-30 1701359793
327 2023-11-30 1701356725
328 2023-11-30 1701354069
329 2023-11-30 1701353439
330 2023-11-30 1701352978
331 2023-11-30 1701352350
332 2023-11-30 1701351492
333 2023-11-30 1701351486
334 2023-11-30 1701349510
335 2023-11-30 1701349440
336 2023-11-30 1701348269
337 2023-11-30 1701346401
338 2023-11-30 1701322548
339 2023-11-30 1701340466
340 2023-11-30 1701337812
341 2023-11-30 1701336691
342 2023-11-30 1701335131
343 2023-11-30 1701334497
344 2023-11-30 1701333239
345 2023-11-30 1701331118
346 2023-11-30 1701329685
347 2023-11-30 1701339235
348 2023-12-02 1701543659
349 2023-12-03 1701571750
350 2023-12-02 1701541980
351 2023-12-03 1701562065
352 2023-12-02 1701560181
353 2023-12-02 1701549965
354 2023-12-02 1701548242
355 2023-12-02 1701545489
356 2023-12-02 1701544766
357 2023-12-02 1701539839
358 2023-12-02 1701538934
359 2023-12-02 1701538240
360 2023-12-01 1701459768
361 2023-12-02 1701531445
362 2023-12-02 1701532441
363 2023-12-02 1701494169
364 2023-12-02 1701500868
365 2023-12-02 1701502952
366 2023-12-02 1701498262
367 2023-12-02 1701533972
368 2023-12-02 1701530568
369 2023-12-02 1701514425
370 2023-12-02 1701515580
371 2023-12-02 1701501877
372 2023-12-02 1701500065
373 2023-12-02 1701499394
374 2023-12-02 1701525901
375 2023-12-02 1701507670
376 2023-12-02 1701512981
377 2023-12-02 1701512633
378 2023-12-02 1701511362
379 2023-12-02 1701509400
380 2023-12-02 1701509256
381 2023-12-02 1701509155
382 2023-12-02 1701525266
383 2023-12-02 1701524442
384 2023-12-02 1701521582
385 2023-12-02 1701520236
386 2023-12-02 1701519608
387 2023-12-02 1701518581
388 2023-12-02 1701518453
389 2023-12-02 1701517936
390 2023-12-02 1701517916
391 2023-12-02 1701517521
392 2023-12-02 1701510783
393 2023-12-02 1701510195
394 2023-12-02 1701508670
395 2023-12-02 1701508395
396 2023-12-02 1701502246
397 2023-12-02 1701503870
398 2023-12-02 1701503662
399 2023-12-02 1701503341
400 2023-12-02 1701499332
401 2023-12-02 1701499085
402 2023-12-02 1701496587
403 2023-12-02 1701497137
404 2023-12-02 1701497186
405 2023-12-02 1701495931
406 2023-12-02 1701495834
407 2023-12-02 1701494761
408 2023-12-02 1701493787
409 2023-12-02 1701493563
410 2023-12-02 1701492721
411 2023-12-02 1701491478
412 2023-12-02 1701490779
413 2023-12-02 1701489711
414 2023-12-02 1701489678
415 2023-12-02 1701489650
416 2023-12-02 1701489350
417 2023-12-02 1701489227
418 2023-12-02 1701489214
419 2023-12-02 1701488276
420 2023-12-02 1701488090
421 2023-12-02 1701486104
422 2023-12-02 1701484470
423 2023-12-02 1701483945
424 2023-12-01 1701464235
425 2023-12-01 1701462652
426 2023-12-01 1701461588
427 2023-12-01 1701461277
428 2023-12-01 1701460771
429 2023-12-01 1701459649
430 2023-12-01 1701458989
431 2023-12-01 1701455980
432 2023-12-01 1701455622
433 2023-12-01 1701455252
434 2023-12-01 1701455034
435 2023-12-01 1701454203
436 2023-12-01 1701452377
437 2023-12-01 1701452356
438 2023-12-01 1701452351
439 2023-12-01 1701450234
440 2023-12-01 1701449520
441 2023-12-01 1701448856
442 2023-12-01 1701448172
443 2023-12-01 1701447936
444 2023-12-01 1701447369
445 2023-12-01 1701446774
446 2023-12-01 1701446561
447 2023-12-01 1701446277
448 2023-12-04 1701710879
449 2023-12-04 1701710759
450 2023-12-04 1701707724
451 2023-12-04 1701706623
452 2023-12-04 1701705913
453 2023-12-04 1701705490
454 2023-12-04 1701705067
455 2023-12-04 1701701953
456 2023-12-04 1701701005
457 2023-12-04 1701699603
458 2023-12-04 1701699606
459 2023-12-04 1701699410
460 2023-12-04 1701699371
461 2023-12-04 1701697716
462 2023-12-04 1701697577
463 2023-12-04 1701697195
464 2023-12-04 1701695746
465 2023-12-04 1701694694
466 2023-12-04 1701691440
467 2023-12-04 1701691293
468 2023-12-04 1701691256
469 2023-12-04 1701688809
470 2023-12-04 1701688577
471 2023-12-04 1701684872
472 2023-12-04 1701681909
473 2023-12-04 1701680351
474 2023-12-04 1701680107
475 2023-12-04 1701656763
476 2023-12-04 1701654916
477 2023-12-04 1701654249
478 2023-12-04 1701653678
479 2023-12-03 1701647326
480 2023-12-04 1701679035
481 2023-12-04 1701677170
482 2023-12-04 1701675157
483 2023-12-04 1701668794
484 2023-12-04 1701667322
485 2023-12-04 1701664975
486 2023-12-04 1701677630
487 2023-12-04 1701673411
488 2023-12-04 1701663754
489 2023-12-04 1701663580
490 2023-12-04 1701663210
491 2023-12-04 1701662103
492 2023-12-04 1701660558
493 2023-12-04 1701648295
494 2023-12-03 1701644375
495 2023-12-03 1701637464
496 2023-12-03 1701632951
497 2023-12-03 1701624516
498 2023-12-03 1701624489
499 2023-12-03 1701620515
500 2023-12-03 1701619679
501 2023-12-03 1701617848
502 2023-12-03 1701617049
503 2023-12-03 1701616652
504 2023-12-03 1701612911
505 2023-12-03 1701612021
506 2023-12-03 1701611605
507 2023-12-03 1701600682
508 2023-12-03 1701603191
509 2023-12-03 1701604003
510 2023-12-03 1701604032
511 2023-12-03 1701604509
512 2023-12-03 1701604649
513 2023-12-03 1701607077
514 2023-12-03 1701607814
515 2023-12-03 1701606697
516 2023-12-03 1701605967
517 2023-12-03 1701604466
518 2023-12-03 1701603986
519 2023-12-03 1701603119
520 2023-12-03 1701602263
521 2023-12-03 1701598707
522 2023-12-03 1701594472
523 2023-12-03 1701590751
524 2023-12-03 1701590837
525 2023-12-03 1701591421
526 2023-12-03 1701592134
527 2023-12-03 1701593537
528 2023-12-03 1701590674
529 2023-12-03 1701589021
530 2023-12-03 1701588589
531 2023-12-03 1701586979
532 2023-12-03 1701586956
533 2023-12-03 1701586850
534 2023-12-03 1701585058
535 2023-12-03 1701584849
536 2023-12-03 1701584115
537 2023-12-03 1701583792
538 2023-12-03 1701583495
539 2023-12-03 1701579423
540 2023-12-03 1701579419
541 2023-12-03 1701578117
542 2023-12-03 1701575065
543 2023-12-03 1701574078
544 2023-12-03 1701573073
545 2023-12-03 1701569157
546 2023-12-02 1701546715
547 2023-12-03 1701572286
548 2023-12-06 1701866145
549 2023-12-06 1701866459
550 2023-12-05 1701800436
551 2023-12-05 1701795758
552 2023-12-06 1701862480
553 2023-12-06 1701858032
554 2023-12-06 1701857060
555 2023-12-06 1701857040
556 2023-12-06 1701855387
557 2023-12-06 1701855212
558 2023-12-06 1701854810
559 2023-12-06 1701851992
560 2023-12-06 1701851024
561 2023-12-06 1701850405
562 2023-12-06 1701847033
563 2023-12-06 1701845127
564 2023-12-06 1701843975
565 2023-12-06 1701839186
566 2023-12-06 1701842453
567 2023-12-06 1701840822
568 2023-12-06 1701840996
569 2023-12-06 1701830755
570 2023-12-06 1701833149
571 2023-12-06 1701831255
572 2023-12-05 1701801905
573 2023-12-06 1701827326
574 2023-12-06 1701826934
575 2023-12-04 1701723511
576 2023-12-04 1701717528
577 2023-12-05 1701751915
578 2023-12-05 1701756352
579 2023-12-05 1701756783
580 2023-12-05 1701757059
581 2023-12-05 1701759422
582 2023-12-05 1701762116
583 2023-12-05 1701763861
584 2023-12-05 1701764276
585 2023-12-05 1701765137
586 2023-12-05 1701791080
587 2023-12-05 1701778600
588 2023-12-05 1701785148
589 2023-12-05 1701780962
590 2023-12-05 1701779204
591 2023-12-05 1701778547
592 2023-12-05 1701799417
593 2023-12-05 1701797967
594 2023-12-05 1701797822
595 2023-12-05 1701797762
596 2023-12-05 1701766956
597 2023-12-05 1701767630
598 2023-12-05 1701771029
599 2023-12-05 1701797108
600 2023-12-05 1701786440
601 2023-12-05 1701792052
602 2023-12-05 1701793515
603 2023-12-05 1701792030
604 2023-12-05 1701795504
605 2023-12-05 1701790370
606 2023-12-05 1701789741
607 2023-12-05 1701789136
608 2023-12-05 1701787989
609 2023-12-05 1701786386
610 2023-12-05 1701783921
611 2023-12-05 1701782591
612 2023-12-05 1701780505
613 2023-12-05 1701780001
614 2023-12-05 1701779856
615 2023-12-05 1701779230
616 2023-12-05 1701777593
617 2023-12-05 1701774436
618 2023-12-05 1701774094
619 2023-12-05 1701773896
620 2023-12-05 1701772253
621 2023-12-05 1701771648
622 2023-12-05 1701771227
623 2023-12-05 1701770430
624 2023-12-05 1701768636
625 2023-12-05 1701767733
626 2023-12-05 1701767204
627 2023-12-05 1701766717
628 2023-12-05 1701762047
629 2023-12-05 1701761187
630 2023-12-05 1701758122
631 2023-12-05 1701757933
632 2023-12-05 1701757678
633 2023-12-05 1701750105
634 2023-12-05 1701748731
635 2023-12-05 1701746957
636 2023-12-05 1701745310
637 2023-12-05 1701745092
638 2023-12-05 1701743466
639 2023-12-05 1701742882
640 2023-12-04 1701732818
641 2023-12-04 1701714672
642 2023-12-04 1701714507
643 2023-12-04 1701714412
644 2023-12-04 1701713258
645 2023-12-04 1701711987
646 2023-12-04 1701711925
647 2023-12-04 1701711595
648 2023-12-08 1702014822
649 2023-12-08 1702012476
650 2023-12-08 1702011790
651 2023-12-08 1702011441
652 2023-12-08 1702010516
653 2023-12-08 1702009835
654 2023-12-08 1702008990
655 2023-12-08 1702006495
656 2023-12-08 1702006303
657 2023-12-08 1702005735
658 2023-12-08 1702005302
659 2023-12-07 1701993537
660 2023-12-07 1701993402
661 2023-12-07 1701985201
662 2023-12-07 1701978488
663 2023-12-07 1701974867
664 2023-12-07 1701972418
665 2023-12-07 1701969515
666 2023-12-07 1701968994
667 2023-12-07 1701967598
668 2023-12-07 1701956283
669 2023-12-07 1701953099
670 2023-12-07 1701962029
671 2023-12-07 1701958811
672 2023-12-07 1701949370
673 2023-12-07 1701949284
674 2023-12-07 1701965076
675 2023-12-07 1701964644
676 2023-12-07 1701962985
677 2023-12-07 1701958398
678 2023-12-07 1701954469
679 2023-12-07 1701949670
680 2023-12-07 1701951513
681 2023-12-07 1701945240
682 2023-12-07 1701947203
683 2023-12-07 1701951909
684 2023-12-07 1701949457
685 2023-12-07 1701948024
686 2023-12-07 1701947949
687 2023-12-07 1701936238
688 2023-12-07 1701939165
689 2023-12-06 1701878231
690 2023-12-06 1701878174
691 2023-12-06 1701877851
692 2023-12-06 1701876317
693 2023-12-07 1701944981
694 2023-12-07 1701944807
695 2023-12-07 1701944781
696 2023-12-07 1701940259
697 2023-12-07 1701937132
698 2023-12-07 1701933980
699 2023-12-06 1701899369
700 2023-12-07 1701916306
701 2023-12-07 1701919160
702 2023-12-07 1701931079
703 2023-12-07 1701930904
704 2023-12-07 1701928121
705 2023-12-07 1701927487
706 2023-12-07 1701925416
707 2023-12-07 1701917239
708 2023-12-07 1701912090
709 2023-12-07 1701910140
710 2023-12-06 1701899846
711 2023-12-06 1701893589
712 2023-12-06 1701890048
713 2023-12-06 1701888155
714 2023-12-06 1701875426
715 2023-12-06 1701885407
716 2023-12-06 1701885337
717 2023-12-06 1701881753
718 2023-12-06 1701880842
719 2023-12-06 1701879770
720 2023-12-06 1701878910
721 2023-12-06 1701878114
722 2023-12-06 1701876567
723 2023-12-06 1701875899
724 2023-12-06 1701875841
725 2023-12-06 1701873411
726 2023-12-06 1701873793
727 2023-12-06 1701873895
728 2023-12-06 1701874734
729 2023-12-06 1701873854
730 2023-12-06 1701873362
731 2023-12-06 1701872852
732 2023-12-06 1701871947
733 2023-12-06 1701871860
734 2023-12-06 1701869429
735 2023-12-06 1701868235
736 2023-12-06 1701866259
737 2023-12-06 1701845326
738 2023-12-06 1701845153
739 2023-12-06 1701843810
740 2023-12-06 1701872213
741 2023-12-06 1701855670
742 2023-12-06 1701848939
743 2023-12-06 1701839405
744 2023-12-06 1701838861
745 2023-12-06 1701868848
746 2023-12-06 1701867038
747 2023-12-05 1701803704
                                                                                                                                                                                                                                                                                                         title
1                                                                                                                                                                                                                  Big fat weddings are India's soft power abroad, just like Bollywood. Don't stop this export
2                                                                                                                                                                                                                Collapsed Indian tunnel had no safety exit, was built through geological fault - panel member
3                                                                                                                                                                                                                                  Bengaluru airport won't ask you to put gadgets in plastic trays. Here's why
4                                                                                                                                                                                                                             NDTV: Class 4 Boys Attack Classmate With Compass 108 Times After Fight At School
5                                                                                                                                                Happening tomorrow! Join us as we dive into the (Regulatory) dark clouds that loom over \034OTT\035 platforms | Broadcasting Services (Regulation) Bill, 2023
6                                                                                                                                                                                                                                                    4 months, 26 victims: Sham stock scheme pulls off big con
7                                                                                                                                                                                                                                 Will rename Hyderabad as Bhagyangar if BJP comes to power, says Kishan Reddy
8                                                                                                                                                                                                                                                                                        Decathlon is Pathetic
9                                                                                                                                                                                                                    48% of complaints on National Consumer Helpline against e-commerce players during Jan-Aug
10                                                                                                                                                                  If you ever have a chance to leave India, especially to a western country, take it and don\031t listen to anybody who tells you otherwise.
11                                                                                                                                                                                                                                                        NRI\031s and ex NRI\031s, how do you view India now?
12                                                                                                                                                                                                            IFFI \030censorship\031 row: Late BJP MLA\031s poem on caste discrimination triggers controversy
13                                                                                                                                                                                                                                 It's OVER - What are we going to do about it? #ODIWorldCup #IndiavAustralia
14                                                                                                                                                                                                    "Apart from Jaitely &amp; Gadkari, No One.." I Inside Modi's Government Meetings I Top Bureaucrat Reveal
15                                                                                                                                                                                                                                                            Anyone who wants to adopt these cuties, Gurugram
16                                                                                                                                                                                                                                                                         Indian passport renewal from Canada
17                                                                                                                                                                                                                                        Ever Thought About the Lack of Telugu Themes in South Indian Comedy?
18                                                                                                                                                                                                                'Troubled' by growing trend among 'big families' to hold weddings abroad, says Narendra Modi
19                                                                                                                                                                                                                                                                                  Wedding venue suggestions!
20                                                                                                                                                                                                                                                               Is Agoda reliable for booking flight tickets?
21                                                                                                                                                                                                                                       Tiger From Rajasthan Enters Kuno National Park, No Threat To Cheetahs
22                                                                                                                                                                                                                                   \030bar On Evening Classes For Girls Is Likely To Derail Many A Dream\031
23                                                                                                                                                                                                                                                                       Cat heavily injured need urgent help.
24                                                                                                                                                                                                                                             Men in India who have extra-wide feet, where do you find shoes?
25                                                                                                                                                                                                                                      Why dont we have an All-One-One Card (Aadhar+PAN+VoterID+other stuffs)
26                                                                                                                                                                                                                                                  Malaysia to allow visa-free entry to Indians from December
27                                                                                                                                                                                                              The month of November 1971, 52 years ago, Very important events were happening in our country.
28                                                                                                                                                                                                                Do you consider it degrading to women to tell them to not attend a puja during their period?
29                                                       Hey Guys, can someone help me with a referral for Frontend Developer. I got laid off around 5 month back since then I've been actively applying but not getting any revert back. I'd really appreciate if someone can help me with a referral please.
30                                                                                                                                                                                                                                                                    Which laptop brand is the best in India?
31                                                                                                                                                                                                                                                        Scamsters paid me money for their "tasks". What now?
32                                                                                                                                                                                                                                                                                Flight rescheduling (Indigo)
33                                                                                                                                                                                                                                                                         A friend needs to continue therapy.
34                [Video] Rescuers try new tack to reach Indian tunnel workers: Indian rescuers began drilling vertically from the top of a mountain under which 41 workers became trapped two weeks ago while working on a highway tunnel. A previous rescue effort hit a snag when the drill broke - Reuters
35                                                                                                                                                                                                                                                                      Why 75% of Indian Women are Unemployed
36  Why I Am Not Just an Indian - I carry an Indian passport because being an Indian citizen, for me, is a political project, undertaken by one of the largest and most culturally diverse populations in the world. It is the most audacious democratic experiment, and it is yet to be fulfilled completely.
37                                                                                                                                                                                                        Cousin took a loan but couldn\031t pay it back? As recovery agents run amok, even you aren\031t safe
38                                                                                                                                                                               The benefits of a lousy passport - Having to choose from a limited number of holiday destinations can be strangely liberating
39                                                                                                                                     India won't disappoint, says Modi as he invites the world 'to invest in our nation' - Calls people of India 'trendsetters and trailblazers when it comes to innovation'
40                                                                                                                                                                                                      There is going to be Loksabha election in India next year, so thought of sharing these two viewpoints.
41                                                                                                                                                                                                                         Hindi "speech to text app recommendation" for elderly who have hearing disabilities
42                                                                                                                                                                                                                                                      Question for all having home-bakery business in india!
43                                                                                                                                                                                                                        15 years of 26/11: One of the heroe who saved hundreds in 2008 Mumbai terror attacks
44                                                                                                                                                                                                                         Just a year after Modiji's speech on freebie culture, BJB is promising free scooty?
45                                                                                                                                                                                                                           What are the employment laws regarding quitting a job while working in a big MNC?
46                                                                                                                                                                                                                                                                          26/11: Never Forgive, Never Forget
47                                                                                                                                                                                                                                                                                           Lucky to be alive
48                                                                                                                                                                                                                                             New SIM Card Rules To Be Followed In India From 1 December 2023
49                                                                                                                                                                                                                                                 A Hopless Indian Youth complains about the political scene.
50                                                                                                                                                                                                                                                                              Refurbished laptop from Amazon
51                                                                                                                                                                                                                                                Milk, Egg, Meat, Wool Output Increased In 2022-23: Govt Data
52                                                                                                                                                                                                                                                        Cancer deaths in India due to avoidable risk factors
53                                                                                                                                                                                                                                                             What to do something different in Goa this time
54                                                                                                                                                                                                                                Experts tell what North India can learn from South India in alleviating smog
55                                                                                                                                                                                                                                                       All 41 Indian labourers rescued from collapsed tunnel
56                                                                                                                                                                                                                                  How to prove work experience when working for a private practicing lawyer?
57                                                                                                                                                                                                                                                                          Unkown caller harassing my sister.
58                                                                                                                                                                                                                                                                           Instructions for a trip to Mumbai
59                                                                                                                                                                                                                                                                              [Confused] Dishwasher in India
60                                                                                                                                                                                                                                  Why are other vegetarian states more tolerant of meat than Gujarat and UP?
61                                                                                                                                                                                                                                                              Hiring stress? Campuses see delayed onboarding
62                                                                                                                                                                                                                                                            Would love some information on these. Thank you!
63                                                                                                                                                                                                                                                  Question for Indian expats: two work permits at same time?
64                                                                                                                                                                                                                                                       What are some of the top Indian inventions post-1947?
65                                                                                                                                                                                                                                                                 How Can I earn as a college student online?
66                                                                                                                                                                                                                                           Actor Randeep Hooda to marry Lin Laishram on November 29. Details
67                                                                                                                                                                                                                                                                                 Adoption in Delhi NCR - Dog
68                                                                                                                                                                                                           Indian Air Force Eyes Future Frontiers With Contemplated Transition To Indian Air And Space Force
69                                                                                                                                                                                                                                                                        Question regarding Doctor statistics
70                                                                                                                                                                                                                                                  Adani group looking to exit FMCG joint venture with Wilmar
71                                                                                                                                                                                                                                                                             Freelancers FIRC document issue
72                                                                                                                                                                                                                                                                   Everyday I feel like a bitch , a coward .
73                                                                                                                                                                                                                                                                                  Does PayTM delete reviews?
74                                                                                                                                                                                                                                                  What is your opinion on the misinformation and media bias?
75                                       Norms flouted, tectonic faultlines ignored: Lapses in Uttarkashi tunnel collapse | On-site investigation coupled with open-source Intelligence reveals the alarming lapses in the construction of the Silkyara tunnel where a collapse entrapped 41 workers on Diwali
76                                                                                                                                                                                                                                                                Statistics of Registered Rape Cases in 2021.
77                                                                                                                                                                                                                                                                                      Getting hydrology gigs
78                                                                                                                                                                                                                                                                             Lorum imposum executive manager
79                                                                                                                                                                                                                         Malayali space scientist VR Lalithambika conferred France's highest civilian honour
80                                                                                                                                                                                                                                   Meet Arnold Dix, tunnelling expert India will thank for Uttarkashi rescue
81                                                                                                                                                                                                                    Lok Sabha polls: BJP says will contest 26 of 48 Maharashtra seats, allies fret over deal
82                                                                                                                                                                                                                                                                     India is seeing a massive aviation boom
83                                                                                                                                                                                                                                     What's an accurate way to find out the value of your rare Indian coins?
84                                                                                                                                                                                                                         All 41 workers trapped inside Silkyara tunnel successfully rescued - Times of India
85                                                                                                                                                                                                                                                                           How can we better plan for death?
86                                                                                                                                                                                                                                  Mazdoor-Kisan Mahapadav Calls for Bigger Movement Ahead, Fight Communalism
87                                                                                                                                                                                                 Explained: What is the new Discard Income Tax Return option? Benefits for taxpayers &amp; all FAQs answered
88                                                                                                                                                                                                                                              iPhone maker Hon Hai plans $1.6 billion in India expansion bid
89                                                                                                                                                                                                      India to launch first-ever auction of critical mineral blocks, including world's new fuel, from Nov 29
90                                                                                                                                                                                                                                                               2 dalits beaten up, urinated on in Tamil Nadu
91                                                                                                                                                                                                                          Centre squeezing funds for SC scholarship leads to arrest warrant for Dalit mother
92                                                                                                                                                                                                                Gujarat: Dalit woman beaten to death by men booked in Atrocities case on her son's complaint
93                                                                                                                                                                                                                                                                     Where was your family during Partition?
94                                                                                                                                                                                                          How &amp; and why India checkmated Chinese giant Huawei's salami-slicing moves in top tech schools
95                                                                                                                                                                                                                                                                                 Is this note of any value ?
96                                                                                                                                                                                                           Indian researchers paid $17mn to publish in open access journals in 2020 \024 57% of global total
97                                                                                                                                                                                                                                        High-Dose Covid Treatment Less Effective In India Than Europe: Study
98                                                                                                                                                                                                                                                                         Olx sellers using flipkart for scam
99                                                                                                                                                                                                                                                             IGCSE Certifying statement for Non ECR Passport
100                                                                                                                                                                                                                                                               Panicking because SimplPay paid for my order
101                                                                                                                                                                                                                         Life Pro Tip: For road rage incident keep a pepper spray inside your car glovebox.
102                                                                                                                                                                                                                                 Indian rescuers break through tunnel debris to evacuate 41 trapped workers
103                                                                                                                                                                                                                         Does Gender Play a Role in Having Interfaith Relationship Acceptance in India Now?
104                                                                                                                                                                                                                                    Question regarding possible flight or visa problem when flying to Spain
105                                                                                                                                                                                                                                                                                                   Fdx scam
106                                                                                                                                                                                                                                                                         Ola s1 air vs s1 pro vs Ather 450x
107                                                                                                                                                                                                                                                    Distance course in Psychology - recommendations please!
108                                                                                                                                                           Have you ever called this stationary item anything besides 'compass'? If so, what did you call it and what in part of the country did you study?
109                                                                                                                                                                                                                                                                                     Distance MBA worth it?
110                                                                                                                                                                                                                                                                                 Planning a trip to gokarna
111                                                                                                                                                                                                                                                              Project help : Election manifesto of Congress
112                                                                                                                                                                                                                                                             Stuff better to buy abroad in India vs the US?
113                                                                                                                                                                                                                  Gandhi Was Mahapurush of Last Century, Modi Yugpurush of This One: Vice-President Dhankar
114                                                                                                                                                                                                                                                                       Does anyone know what music this is?
115                                                                                                                                                                                                                                                                Is it my fault that I am well mannered guy?
116                                                                                                                                                                                                                                                     advice on making Indian colleagues feel welcome in US?
117                                                                                                                                                                                                                                                                        Post retirement options for parents
118                                                                                                                                                            Rishikesh-Karnprayag rail project under scrutiny after Silkyara mishap | Tunnels constitute 85 per cent part of the 125 km long railway project
119                                                                                                                                                                                                                     Good health insurance plan to buy when you are in your 50s - for retirement and beyond
120                                                                                                                                                                                                                                                                 TIL: Zomato is not liable for you delivery
121                                                                                                                                                                                                                                                                         Employer denying maternity benefit
122                                                                                                                                          My dad sexually assaulted me till I was 12 years old. And now I'm 20(f), so is there anyway I can get justice now since I know what was actually happening to me?
123                                                                                                                                                                                                                                                                 Health Insurance Struggle: Seeking Support
124                                                                                                                                                                                                                                                                             does this coin have any value?
125                                                                                                                  The Broadcasting Bill 2023 wants to regulate OTT platforms, independent news publishers and content creators | MIB is bringing the old censorship engine of Cable TV to the digital realm
126                                                                                                                                                                                                                          Public audit ensures funds are well-spent for development works: J&amp;K LG Sinha
127                                                                                                                                                                                                                                People who started a business partnering with your friends.. how did it go?
128                                                                                                                                                                                                                                                                              Feels like Zomato scamming me
129                                                                                                                                                                                                                                     NEET aspirant from West Bengal found dead in Kota; 25th case this year
130                                                                                                                                                                                                                                                                               People who have eye floaters
131                                                                                                                                                                                                          The Insane light show at the church festival of Basilica of Our Lady of Dolours, Thrissur Kerala 
132                                                                                                                                                                                                                                                                                  How to get my money back?
133                                                                                                                                                                                                                    society requesting to pay extra repair fee despite Monthly Maintenance Covering Repairs
134                                                                                                                                                                                                                                          Student Traveling from US to India - Luggage &amp; Customs Advice
135                                                                                                                                                                                                                                                               Are CBSE schools all over India this shitty?
136                                                                                                                                                                                                                  I made a Subreddit related to Mental Health. Check it out if you think it might help you.
137                                                                                                                                                                                                                                                     Short (&lt;5 min) Survey towards all Citizens of India
138                                                                                                                                                                                                                                                        Good gift ideas for new born babies and new parents
139                                                                                                                                                                                                                                                                                      want to join politics
140                                                                                                                                                                                                                        To curb fraud, 4-hour delay likely in first UPI transfer over Rs 2,000 | India News
141                                                                                                                                                                                                                                                                                            Old indian coin
142                                                                                                                                                                                                                     CNBCTV18: Passenger finds seat cushion missing on Nagpur-bound flight, IndiGo responds
143                                                                                                                                                                                                                                Can anyone tell me this piece of music? (Voice memo recording in post text)
144                                                                                                                                                                                                                        How Uttar Pradesh\031s halal ban has plunged the processed food industry into chaos
145                                                                                                                                                                                                                                                         Tata ordered to cough up $210M in code theft trial
146                                                                                                                                                                                                                                                    Who Was Building the Uttarakhand Tunnel That Collapsed?
147                                                                                                                                                                                   Good people of India, please help me translate the inscriptions on this coin, along with recognising where this is from!
148                                                                                                                                                                                                                                                                               Regretting my life decisions
149                                                                                                                                                                                     Is this some kind of scam? Received 5k from someone. Do I return it or report it? Getting messages on WhatsApp as well
150                                                                                                                                                                                                                                                                          Looking for a two-wheeler scooter
151                                                                                                                                                                                                                      IIT-M Suspends Professor Ashish, Holds Him Solely Responsible for PhD Student Suicide
152                                                                                                                                                                                                                                 Capitalism based on free market only solution to alleviate poverty: Murthy
153                                                                                                                                                                                                 Indian student living in New Jersey fatally shoots grandparents, uncle at home in horrifying triple murder
154                                                                                                                                                                                                                                                   India's transnational repression detailed in new reports
155                                                                                                                                                                                     Lucknow Crime News: Social media \030star\031 Ajeet Maurya with 2 wives, 9 children, 6 girlfriends held | Lucknow News
156                                                                                                                                                                                                                                                              Andaman and Nicobar travel within the islands
157                                                                                                                                                                                                             Do you think a policy like this will get rid of the uncivil mindset of Indians in our country?
158                                                                                                                                                                                                                                            Why don't we have Women Selling Goal Gappas and Chaat in India?
159                                                                                                                                                                                                                           Sikh guy got beaten up with belts for refusing to say \030Khalistan Murdabad\031
160                                                                                                                                                                                                                                                                  Whom to approach for the EWS certificate?
161                                                                                                                          A nation is only as good as its citizens and I think we have failed. It freaking hurts so much. Why would a government be serious if its citizens themselves aren\031t? [SERIOUS]
162                                                                                                                                                           What are your views for India when it comes to getting your House build; which approach among following three works better from Your experience.
163                                                                                                                                                                                                                                                                           Questions about sikhs and hindus
164                                                                                                                                                                                                                                              Seeking Advice for a Serene Snowy Retreat in Himachal Pradesh
165                                                                                                                                                                                                                                                              Where to celebrate Christmas and New year ???
166                                                                                                                                                                                                          Found this 45 year old dairy that my father used to maintain to keep a log of his daily expenses.
167                                                                                                                                                                                                                                               What precautions to take while one is selling stuff via Olx?
168                                                                                                                                                                                                                        SC to consider laying down guidelines on when governors can send bills to President
169                                                                                                                                                                                                                 A genetic testing revolution is on. Indian patients lining up for answers to rare diseases
170                                                                                                                                                                                                                        Canada, US top 2 study destinations for Indians, UK displaces Australia as Number 3
171                                                                                                                                                                                                                      Madurai caste crime: Dalits, including 5-yr-old boy, hacked with swords at playground
172                                                                                                                                                                                                               India Accidentally Hired a DEA Agent to Kill Sikh American Activist, Federal Prosecutors Say
173                                                                                                                                                                                                                   How do Northeast men feel about Punjabi or even generally non Northeastern Indian Woman?
174                                                                                                                                                                                                                                                                                        Help me find a reel
175                                                                                                                                                                                                      Kaala Paani review: Handsomely-produced and well-performed, Netflix series works as a cautionary tale
176                                                                                                                                                                                                                                    Thinking of moving back to India after living in US/Canada for 15 years
177                                                                                                                                                                                                                                   Planning a Trip to Manali in Late December \023 Seeking Advice and Tips!
178                                                                                                                                                                                                                                                                              Feeling betrayed by relatives
179                                                                                                                                                                         If 10 mins of Azaan causes noise pollution, what about loud music, bhajan in temples? Gujarat High Court rejects PIL against Azaan
180                                                                                                                                                                                                                         Hello non-pierced fellas, where do you buy your clip on earrings or earcuffs from?
181                                                                                                                                                                                                                                                                Song Translation Request (Hindi to English)
182                                                                                                                                                                                                                       J&amp;K Police book NIT student for \030hurting religious sentiments\031 in Srinagar
183                                                                                                                                                                                                                Manipur \031s oldest armed group UNLF \030renounce violence\031 and join the mainstream\031
184                                                                                                                                                                                                               90 passengers aboard Bharat Gaurav train complain of food poisoning, treated at Pune station
185                                                                                                                                                                                                                           Gautam Adani's wealth soars $6.5 billion in a day, re-enters top 20 richest list
186                                                                                                                                                                                                                                                                    How to spend time with my grandparents?
187                                                                                                                                                                                                                                These AI Generated scam ads are getting normal and it's scary (watch video)
188                                                                                                                                                                                                                                                                How does your Spotify Wrapped looks, India?
189                                                                                                                                                                                                                                                      Question for all having home-bakery business in India
190                                                                                                                                                                                                                                                                                      Need Internship Help!
191                                                                                                                                                                                                  Are most Indian men disgusting or is this a problem with women too when it comes to bathroom cleanliness?
192                                                                                                                                                                                                                                                                           Stream Advice - Forensic Science
193                                                                                                                                                                                                                                                                  Will we ever see giant IT centres is NCR?
194                                                                                U.S. Attorney Announces Charges In Connection With Foiled Plot To Assassinate U.S. Citizen In New York City | Indian Government Employee Directed a Plot From India to Murder U.S.-Based Leader of Sikh Separatist Movement
195                                                                                                                                                                                                                                                                               Travel Agency trying to scam
196                                                                                                                                                                                                                                                                               Most social cities in India?
197                                                                                                                                                                                                                     Call for all the international students, you need to read this if you ever felt lonely
198                                                                                                                                                                                                                                                             this new law can shut down youtube journalists
199                                                                                                                                                                                                                             Manipur's Armed Group UNLF Signs Peace Deal, 6-Decade-Long Armed Movement Ends
200                                                                                                                                                                                                                                                        Since everyone is showing their coins , here's mine
201                                                                                                                                                                                                                                          Need Help with Unresolved JioFiber/JioAirFiber Installation Issue
202                                                                                                                                                                                                                                                                                    Animal Lovers of India.
203                                                                                                                                                                                                                                                          Flexing this Beautiful 1 Rupee coin from 1862....
204                                                                                                                                                                                                                           Bengaluru gets AMD\031s largest global design centre, will house 3,000 engineers
205                                                                                                                                                                                                                                    Indian drug manufacturers benefit from Big Pharma interest beyond China
206                                                                                                                                                                                                                                                                                         A coin marked 1984
207                                                                                                                                                                                                                                                                           The fortnightly Ask India Thread
208                                                                                                                                                                                                                                                               The fortnightly Mental Health Support Thread
209                                                                                                                                                                                                                          India Saw Extreme Weather Events Almost Daily In First 9 Months This Year: Report
210                                                                                                                                                                                                                            My father died recently and I am not sure how to proceed with his bank accounts
211                                                                                                                                                                                                                                                         Inside Foxconn\031s India iPhone factory expansion
212                                                                                                                                                                                                                                                  India - why are you sweet and salty just like lemon soda?
213                                                                                                                                                                                                                               [No Paywall] India Allots $142 Billion for Free Grains to 800 Million People
214                                                                                                                                                                                                   Aadhaar-enabled Payment System fraud \030warning\031: 10 dos and don\031ts while using your Aadhaar card
215                                                                                                                                                                                                                                                            How much money is enough to retire comfortably?
216                                                                                                                                                                                                                                                                              A question about Universities
217                                                                                                                                                                                                                                                              Livpure Scam Alert! Need Your Help and Advice
218                                                                                                                                                                                                                                    Looking for a digital bank account - NRI - freo / fimoney front runners
219                                                                                                                                                                                                                                                          India has become cyber fraud capital of the world
220                                                                                                                                                                                                                      Does anyone have any Zomato coupon code? I want to celebrate my mom's birthday today.
221                                                                                                                                                                                                                                             White Wednesday, since Black Friday is too mainstream for AJIO
222                                                                                                                                                                                                                                   I\031m traveling from AUS to Le Ladakh in March. What do I need to know?
223                                                                                                                                                                                                                                             Indian Girls pursuing Korean culture. (Impact &amp; concerns)?
224                                                                                                                                                                                                               What a man can do in India if he find out that he is not the biological father of his child?
225                                                                                                                                                                                                          Only 1 in 10 Are Employed: The Disastrous Female Employment Rate In India - The Vaisheshika Times
226                                                                                                                                                                                                                                                             Praggnanandhaa\031s mom but with Vaishali (OC)
227                                                                                                                                                                                                                              Visiting Delhi, Goa, Jaipur &amp; Agra with a life-threatening Peanut Allergy
228                                                                                                                                                                                                                                 The exhaustive process of finding a therapist in India for online sessions
229                                                                                                                                                                                                                                                                       50 Paise coin is valid legal tender.
230                                                                                                                                                                                                            When the machinery broke, 'rat-hole miners' dug by hand to rescue 41 trapped labourers in India
231                                                                                                                                                                                            Sooo everyone is showing of there coins , lemme be a part of it , and you can also tell me how much they worth.
232                                                                                                                                                                                                                                                      Window cleaners, Noida | Fujifilm X100V | 1858 x 3302
233                                                                                                                                                                                                                                                            Is something going on with china/india rivalry?
234                                                                                                                                                                                                                                          What's stopping Indian National Congress from adapting to change?
235                                                                                                                                                                                                                                                      Canadian travelling to India in the next couple weeks
236                                                                                                                                                                                                                                                               How does MasterChef India work? Very curious
237                                                                                                                                                                                                                                                                                    Travelling to Sri Lanka
238                                                                                                                                                                                                                                                                              Coffee prices based on ppp...
239                                                                                                                                                                                                                                                                      A questionnaire on the Revadi culture
240                                                                                                                                                                                                                                                                        Hiring of older candidates in India
241                                                                                                                                                                                                                                                Can PM Modi Be India's Next Astronaut? What NASA Chief Said
242                                                                                                                                                                                                                                                     I hate when some women take advantage of being a woman
243                                                                                                                                                                                                                                         India to Add $5 Billion Aircraft Carrier to Fleet to Counter China
244                                                                                                                                                                                                                                              I need help regarding a paranormal experience i had recently.
245                                                                                                                                                                                                                                                         Tata ordered to cough up $210M in code theft trial
246                                                                                                                                                                                                                                            A Gandhi ashram in T.N. and its struggling artisans | The Hindu
247                                                                                                                                                                                                                      Fake TRP: Maharashtra govt wants to withdraw case; court to decide on plea next month
248                                                                                                                                                        Tamil Nadu anti-corruption police search Enforcement Directorate office in Madurai after arresting officer on bribery charge, recover ¹20 lakh cash
249                                                                                                                                                                                                                Raj Kapoor\031s iconic bungalow to be converted into a Rs 500 crore luxury housing project;
250                                                                                                                          Sadhguru: Journey of a Fake Spiritual Guru | Full Documentary on YouTube by Kamdev is being withheld in India after a court order on the basis of a case filed by Isha Foundation
251                                                                                                                                                                                                                             Seeking Insights for Academic Research: Does college graduate earn more money?
252                                                                                                                                                                                                                                'Must work 3 shifts': Narayana Murthy's proposal for infra sector employees
253                                                                                                                                                                                                                                    Bengaluru techie on \030paid sex\031 website falls into sextortion trap
254                                                                                                                  Vanishing Graduate Tech Jobs Worsen Modi's Headache Before Elections: India\031s giant tech firms are curbing hiring, adding to the youth unemployment problem in the country - Bloomberg
255                                                                                                                                                                                                                                     Mint: India Navy appoints first woman commanding officer in naval ship
256                                                                                                                                                                                                                            Which city or state is the worst to drive with outside state/city number plate?
257                                                                                           Hey r/India it\031s Abijit Ganguly here. I'm a Stand-up Comedian, Twitter Ranter, recovering Consultant, sports nerd, Delhi'ite Bengali managing high rents of Mumbai &amp; lifelong weight-loss attempter, AMA!
258                                                                                                                                                                                                                                                                    What is this moye moye trend all about?
259                                                                                                                                                                                                                    Matrimonial sites should include an option for couples who do not wish to have children
260                                                                                                                                                                                                                                                                  This view from my homestay in Kasol. (oc)
261                                                                                                                                                                                                                                                                                              Diabetes help
262                                                                                                                                                                                                                                 Are any of the Indian chocolate brands ethically sourcing their chocolate?
263                                                                                                                                                                                                                        What is a supplement that can fulfill all your Vitamin/Mineral/Anti Oxidants needs?
264                                                                                                                                                                                                                                                                                 Help me plan my India trip
265                                                                                                                                                                                                                                                               Please help save a life | Urgent help needed
266                                                                                                                                                                                                                                             Can I get a reserved caste certificate based on my mom's side?
267                                                                                                                                                           Which infrared thermometer (non-contact) is the most reliable and durable from experience? Amazon throws up like 10-15 models so it's confusing.
268                                                                                                                                                                                                                             Can a foreigner apply for Indian citizenship if his grand parents were Indian?
269                                                                                                                                                                                                                                                        Why does my friend keep lying and having self-pity?
270                                                                                                                                                                                                                                What legal requirements do I need to fulfill to resell on Amazon / Flipkart
271                                                                                                                                                                                                                                                                            How hard is it to use blinkers?
272                                                                                                                                                                                                                                                   Advice regarding contact lenses from past/ current users
273                                                                                                                                                                                                               Is Practo a legitimate source when looking up qualifications and background info on doctors?
274                                                                                                                                                                                                             Indian student kept in captivity for 3 months, beaten with PVC pipe, metal rods in US, rescued
275                                                                                                                                                                                                                                   Bihar Teacher Abducted, Forced To Marry Kidnapper's Daughter At Gunpoint
276                                                                                                                                                                                                                                                                                         Pure bliss >\u008b
277                                                                                                                                                                                                       \030No time left now\031: Why BJP thinks Mathura Krishna Janmabhoomi issue can transform UP politics
278                                                                                                                                                                                                                                                               Prospective Job at Maruti. Need your advice?
279                                                                                                                                                                                                     are these things allowed to fly with? My hellbent relative had ordered a ton of these to carry with me
280                                                                                                                                                                                                                                               What is the rationale behind the Insane Tax on Surplus Gold?
281                                                                                                                                                                                                                                         No one insults me more than my parents do. Am I overthinking this?
282                                                                                                                                                                                                                                                                 HDFC life details from scammer on WhatsApp
283                                                                                                                                                                                                                                                               the mobile market in India has gone terrible
284                                                                                                                                                                                                                             How alleged India plots to kill Sikh separatists in the US and Canada unfolded
285                                                                                                                                                                                                                                                                                                Art by Alok
286                                                                                                                                                                                                                                                                                    Got diagnosed with BPPV
287                                                                                                                                                                                                                              No Electricity At Stadium Hosting India Vs Australia T20 Today. Bill Not Paid
288                                                                                                                                                                                                                                            Hello , any Indians here using Duprost by Cipla for Hairloss ??
289                                                                                                                                                                                                                                                             Is Manipal University Jaipur Online BCA legit?
290                                                                                                                                                                                                                                      For South Indian ladies- where to find pen kalamkari fabric material?
291                                                                                                                                                                                                                                                                             Confused - which laptop to buy
292                                                                                                                                                                                                                                                                 Things named after Modi in last few years.
293                                                                                                                                                                                                                                    Is anyone here worried about having children because of climate change?
294                                                                                                                                                                                                                                                                               Remembering a beloved friend
295                                                                                                                                                                                                                                                Decline In Muslim Enrolment In Higher Education, Says Study
296                                                                                                                                                                                                                                                              My experience travelling with Indian railways
297                                                                                                                                                                                                                                            ¹2.23 lakh crore to buy 97 Tejas jets, 156 Prachand helicopters
298                                                                                                                                                                                                                                            Henry Kissinger's Controversial Link To Bhopal Gas Tragedy Case
299                                                                                                                                     I am planning my career ( currently in 11th) and want to know your experiences about what you have done and what you regret . And also suggest some career options .=O
300                                                                                                                                                                                                                                                       Anyone from nagaland.Need help with a school project
301                                                                                                                                                                                                                    ELI5 If india\031s economy is booming then why isn\031t the value of rupee increasing ?
302                                                                                                                                                                                                                                                            The blatant misogyny on Instagram is disgusting
303                                                                                                                                                                                                                                     Question regarding status of CyberCrime complaints posted to CyberDost
304                                                                                                                                                                                                                                                                  Impact of Large Language Models on India?
305                                                                                                               I lost my PAN Card and Drivers License Card, because my wallet was recently lost. Can these be potentially misused (for e.g: stealing from my bank account) by other people if they have it?
306                                                                                                                                                                                                                                                          Hi , any reliale Dog NGOs in Jaipur (Rajasthan) ?
307                                                                                                                                                                                                              Breakdown of the Structure of Indian Economy as per GDP Calculation (based on current prices)
308                                                                                                                                                                                                                        50-metre-tall mobile tower stolen from UP village | Allahabad News - Times of India
309                                                                                                                                                                                                                                       115-million-year old shark fossils discovered in Jaisalmer: Research
310                                                                                                                                                                                  Rs 2.23 lakh crore-deal: India approves purchase of 97 Tejas aircraft, 156 Prachanda helicopters, other defence equipment
311                                                                                                                                                                                                                                                           Rs. 18.85 Crore looted from PNB Ukhrul, Manipur.
312                                                                                                                                                                                                                                                             Teaching practical masculinity to my daughter.
313                                                                                                                                                                                                                                                                       Percentage of Women in the workforce
314                                                                                                                                                                                                                             How successful has the ban of alcohol in Bihar, Gujarat and other states been?
315                                                                                                                                                                                                                 Nijjar-Pannun effect: RAW downs shutters in North America 1st time since inception in 1968
316                                                                                                                                                                                   Telangana Exit Poll Results 2023 Live Updates: BRS-Congress may go neck-and-neck, BJP lags behind, say early predictions
317                                                                                                                                                                                                                   Starting a help chain like the Bollywood movie Jai ho. Will this work in real life too ?
318                                                                                                                                                                                                                                                                                  I want to cry but I can't
319                                                                                                                                                                                                                          Custom vinyl record pressing in India?? (Christmas gift for a girl I\031m dating)
320                                                                                                                                                                                                                                  Regarding filing a complaint with the vigilance commission with evidence.
321                                                                                                                                                                                                                                        India\031s Cricket Body Takes Byju\031s to Court for Missed Payment
322                                                                                                                                                                                                                    Woman screaming for help in the streets of Kolkata in India caught on an IRL livestream
323                                                                                                                                                                                                                                                 Today I saw the plague destroying our country in real life
324                                                                                                                                                                                                                                         "Customs Duty Inquiry: Bringing used Cycle to India from overseas"
325                                                                                                                                                                                                             Understanding US indictment in Pannun \030plot\031: Puppets, puppeteers, diplomats &amp; spies
326                                                                                                                                                      AMA Alert: Stand-up Comedian Abijit Ganguly will be live in r/india for an AMA session on 1st December at 07:30 pm IST. Do join and ask him anything!
327                                                                                                                                                                                                                                 Buddha used to be Vishnu in India. In Sri Lanka, Vishnu is a future Buddha
328                                                                                                                          NASA to train Indian astronaut for ISS voyage in deepening space ties. NASA will train an Indian astronaut for a voyage to the International Space Station as early as next year.
329                                                                                                                                                                                                                                                          Since others are also sharing their collection...
330                                                                                                                                                                                 After Union govt renames health and wellness centres as 'mandirs', NMC replaces Ashoka Emblem in its logo with Hindu deity
331                                                                                                                                                                                                                     Cyclone Michaung headed for Tamil Nadu, Andhra coasts; IMD issues \030orange\031 alert
332                                                                                                                                                                                                                                                        Navi Mumbai opens first metro line eight years late
333                                                                                                                                                                                                                Her adopters bailed on her and since then Roohi is looking for her forever home but in vain
334                                                                                                                                                                                                                                                        India GDP growth in Q2 FY24 beats estimates at 7.6%
335                                                                                                                                                                                                                     How accurate were 2018 exit polls in Madhya Pradesh, Rajasthan, Chhattisgarh, Mizoram?
336                                                                                                                                                                                                                                       Old Nokia phone is now manufactured in India ~ Minister for Railways
337                                                                                                                                                                                                                                                           Is wearing saree below navel too bold in India ?
338                                                                                                                                                                                                                                                       3 months in India, need tips for making my itinerary
339                                                                                                                                                                                                                                                                  Germany Family Reunion VISA expected time
340                                                                                                                                                                                                                                               Are there places to visit before renouncing Indian passport?
341                                                                                                                                                                                                                                                              Why is there so much hate around the country?
342                                                                                                                                                                                                                                                                                     Potential animal abuse
343                                                                                                                                                                                                                                                                              Never buy from headphonezone.
344                                                                                                                                                                                                                                                                       Getting a passport is still a hassle
345                                                                                                                                                                                                                                                          Looking for recommendations for a city that has :
346                                                                                                                                                                                                                                                                   Nervous flyer Air India long haul flight
347                                                                                                                                                                                                                                                                Setting up a cloud kitchen based from home?
348                                                                                                                                                                                                                                                                   Which is the best payments bank account?
349                                                                                                                                                                                                                                            New Scam: Noida Woman 'Digitally Arrested', Duped Of Rs 11 Lakh
350                                                                                                                                                                                                                                       Doctors of r/India, need some help! Why was I prescribed these meds?
351                                                                                                                                                                                                                                                Is there a guide to set up essentials upon return to India?
352                                                                                                                                                                                                                                                                           Job Market in India - Worth it ?
353                                                                                                                                                                                                                                                                        Review on Manochikitsa and Manastha
354                                                                                                                                                                                                                                                                                     December trip to India
355                                                                                                                                                                                                             Court dismisses Hindu Makkal Katchi leader\031s plea to quash case for damaging Periyar statue
356                                                                                                                                                                                                                     What does the Sisodia bail decision mean for civil liberties? - Supreme Court Observer
357                                                                                                                                                                                                                                                                FIRST EVER Sister and Brother GRANDMASTERS!
358                                                                                                                                                                                                                                               Akshay Kumar already made a movie on rescuing trapped miners
359                                                                                                                                                                                                               Byju's delays November salary of around 1,000 employees, cites 'unexpected technical glitch'
360                                                                                                                                                                                                                                                             Can anyone explain how the UPI fraud was done?
361                                                                                                                                                                                                                                                                                   Is MS from USA worth it?
362                                                                                                                                                                                                                [AskIndia] Online business owners of Reddit, I got a question regarding Udyam Registration.
363                                                                                                                                                                                                                                                                          Legit Organisations for donations
364                                                                                                                                                                                                          mentioning that you are a brahmin when someone asks which caste do you belong to is "FLAUNTING" ?
365                                                                                                                                                                                                                                  What is this MCA government thing and how do people earn so much from it?
366                                                                                                                                                                            A potential buyer did some developmental work on my father's land and is now demanding compensation. Who is legally right here?
367                                                                                                                                                                                                                                                                       Indigo airlines lost my mother's bag
368                                                                                                                                                                                                            What do I (29M) do something about my brother (26M) abusing my parents physically and mentally?
369                                                                                                                                                                                                                                                                  Lawyer-Activist as a secondary profession
370                                                                                                                                                                                                                                                                    Has anyone used Desertcart.in recently?
371                                                                                                                                                                                                                                   Unemployed for a few months currently, need advice getting back to work.
372                                                                                                                                                                                                                                                                     Anuv Jain Concert Dec 23rd (Bangalore)
373                                                                                                                                                                                                                                   Psychologist recommendations for pathological liar (addictive behaviour)
374                                                                                                                                                                                                                                        Man kills girlfriend in hotel, posts pic of body as WhatsApp status
375                                                                                                                                                                                                                                                 What apps do you have on your phone for quality time pass?
376                                                                                                                                                                                                            In the absence of a uniform civil code, which laws govern the inheritance of an atheist family?
377                                                                                                                                                                                                                                                           How viable is the PC assembly business in India?
378                                                                                                                                                                                                          Hello r/india, dumb tourist question: Can one get sparkling water or carbonated water in Udaipur?
379                                                                                                                                                                                                                      Is there any way to request for movies at a theatre? I wanna watch Godzilla Minus One
380                                                                                                                                                                                                                                                                                 Should I do an mba or not?
381                                                                                                                                                                                                                                                                                        Budget Tracking App
382                                                                                                                                                                                                                                         India's Aditya Mission Starts Studying Solar Winds, Shares 1st Pic
383                                                                                                                                                                                                                                     1984 Bhopal Gas Tragedy: One Of The World's Major Industrial Accidents
384                                                                                                                                                           Boult audio called me to rate their product 5 stars and share the screenshot with one of their employees to register the warranty of the product
385                                                                  [2014] Narendra Modi has suggested he would authorise India\031s intelligence services to stage cross-border strikes against terrorists. The stakes are seismic \024 and must be debated with dispassion, before a choice is made in rage
386                                                                                                                                                                                                      In 2022, India accounted for 66% of malaria cases in WHO South-East Asia Region: World Malaria Report
387                                                                                                                                                                                                                              Alright. Now it's my turn to show off my sizeable collection of Indian coins.
388                                                                                                                                                                                                           \030Plot to kill Pannun\031: Why did Nikhil Gupta want to \030finish the job\031 before June 30?
389                                                                                                                                                                                                                                                         What is with this "study-abroad is bad" mentality?
390                                                                                                                                                                                                         U.S. prosecutors say plots to assassinate Sikh leaders were part of a campaign of planned killings
391                                                                                                                                                                                           Tamil Nadu police wrap up overnight search at ED\031s Madurai office, say seized \030incriminating\031 documents
392                                                                                                                                                                                                                             Notice to 11 BJP MLAs for \030insulting\031 national anthem in Bengal Assembly
393                                                                                                                                                                                                     K'taka: Visually Impaired Elderly Muslim Man Forced to Chant 'Jai Shri Ram,' Beard Burnt in Gangavathi
394                                                                                                                                                                                          While We Watched: John Oliver in conversation with Ravish Kumar &amp; Vinay Shukla | \034I( \0212@50 8G ,>$\032@$
395                                                                                                                                                                                                                                        3 in Gujarat die after consuming Ayurveda syrup; police begin probe
396                                                                                                                                                                                                                                                                         Best stomach friendly whey protein
397                                                                                                                           India\031s lawless financial capitalism fosters a culture of scams | Cheered on by the state, it has infused an alarming disregard for ethical conduct and public accountability
398                                                                                                                                                                                                         ¹2,000 banknotes continue to be legal tender even as 97.26% of circulating banknotes return to RBI
399                                                                                                                                                                                                                  Pro-Kabaddi is bigger than IPL in small towns. And India is making it truly international
400                                                                                                                                                                                                                                             Which is the best online PC/tech repair website based in India
401                                                                                                                                                                                                                                                         Silkyara tunnel collaped 20 times in past 5 years.
402                                                                                                                                                                                                                                                                      Why there is no Britisher's in India?
403                                                                                                                                          Just read that no democratic country has ever gone to war with another democratic country. Wars take place only when one of the two governments is non-democratic
404                                                                                                                                                                                                                                      Where do I report about a passenger who harrassed my friend in train?
405                                                                                                                                                                                                                                                                              Pawan Hans Helicopter booking
406                                                                                                                                                                                                                        New Zealand: 3 Khalistan Extremists Guilty Of Plot To Kill Indian-Origin Radio Host
407                                                                                                                                                                                                                      Netflix, Viacom18 among streaming firms set to oppose India broadcasting bill-sources
408                                                                                                                                                                                                   Not a \030Vishwaguru\031, not indispensable: Nijjar-Pannun episodes reveal India\031s delusions of power
409                                                                                                                                                                                                                       Kissinger, Nixon \030helped\031 Pakistan in 1971, documents from U.S. Archive reveal
410                                                                                                                                                                                                                                                                        Lowest &amp; Highest Literacy Rates
411                                                                                                                                                                                                           Pakistan beats India 38-18 at UNESCO vote, \030Global South\031 countries may have sided with it
412                                                                                                                                                                            University Grants Commission asks universities, colleges to set up selfie points with images of Narendra Modi in the background
413                                                                                                                                                                           MP Shocker: JCB machine, cement mixer used to make 'Prasad' at self-styled godman Dhirendra Shastri's Dandraua Dham, watch video
414                                                                                                                                                                                                                                Tamil Nadu police arrest ED official in bribery case after high-speed chase
415                                                                                                                                                                                                                                    Commercial LPG cylinder prices hiked ¹21 from today. Check latest rates
416                                                                                                                                                                                             (Inspired from r/askreddit) Which millionaire or billionaire has actually done good to the community in India?
417                                                                                                                                                                                                                                           In a first, woman officer assumes command of an Indian Navy ship
418                                                                                                                                                                                                       Received unexpected money in my account. Have no idea who sent this and why. What can I do about it?
419                                                                                                                                                                                                                       ED officer arrested: Tamil Nadu Police searches Madurai office. Who is Ankit Tiwari?
420                                                                                                                                                                                                                                                        The Indian siblings taking the chess world by storm
421                                                                                                                                                                                                                             In exam, 6 in Gujarat write adult content, abuse teachers; failed | Surat News
422                                                                                                                                                                                                                     \030It felt like death was near\031: survivors of India tunnel collapse tell of ordeal
423                                                                                                                                                                                                                                                         Biden wants to take away Modi\031s license to kill
424                                                                                                                                                                                                                                                              Indira Gandhi interview in French 14-Jan-1969
425                                                                                                                                                                                                                            Giorgia Meloni reacts to the #Melodi trend which took X by storm after the G20.
426                                                                                                                                                                                                                                                                                 Animal movie is disturbing
427                                                                                                                                                                                                                              48 Bengaluru schools get bomb threat emails, police say hoax | Bangalore News
428                                                                                                                                                    Does anyone have a parent who's lonely / scared of being alone? How do you manage if you can't be around all the time due to a job or any other reason?
429                                                                                                                                                                                                        \030Govt putting in lot of effort to protect domestic manufacturing sector from Chinese dumping\031
430                                                                                                                                                                                                                                                                 What\031s this ridiculous airline pricing?
431                                                                                                                                                                                                                           Do you guys have any small business ideas for old parents to keep them occupied?
432                                                                                                                                                                                                            SC Extends Protection Granted to Journalists from Arrest Over News Articles Against Adani Group
433                                                                                                                                                                                                                                                           Suggestions for seven day itinerary to Himachal!
434                                                                                                                                                                                                                               Need Advice on International Transaction Issue with Best Buy and Indian Bank
435                                                                                                                                                                                                                                                                              Price of Indian tourist visa?
436                                                                                                                                                                                                                            Tamil Nadu Cops To Search Central Probe Agency Offices In Rs 1 Crore Bribe Case
437                                                                                                                                                                                                                                               How hospital with fake doctors thrived in the heart of Delhi
438                                                                                                                                                                                                                                                                                               USA v. Gupta
439                                                                                                                                                                                                                                                                     Multiplex offline movie ticket booking
440                                                                                                                                                                                                                                                                  Best pocket friendly vegan protein powder
441                                                                                                                                                                                                                                                                 FD Auto Renewal Interest Rate ? [SBI Bank]
442                                                                                                                                                                                                          Is there any psychologists here?? Need urgent help regarding my ADHD and Maladaptive Daydreaming.
443                                                                                                                                                                                                                                       Why are so many Indians leaving India, giving up their citizenships?
444                                                                                                                                                                                                         Paraguay official sacked after signing MoU with Indian fugitive Nithyananda\031s fictional country
445                                                                                                                                                                                                                                                                                  Need Help- Livspace Fraud
446                                                                                                                                                                                                                                                                                  OCI card application mail
447                                                                                                                                                                                                                                                                            Brands like Bath and Body Works
448                                                                                                                                                                                                                                                       India\031s Identity Is More Hardline Hindu Than Ever
449                                                                                                                                                                                                                              Applying for parents US B2 visa for the first time. Need advice. Please help.
450                                                                                                                                                                                                                          How do you clear vapours/fog from your car's windshield during monsoon or winter?
451                                                                                                                                                           Swanand Kirkire voices concern over Animal\031s treatment of women: \030This film will take Indian cinema to a scary and dangerous direction\031
452                                                                                                                                                                                                                                                                   Help fill a questionnaire for a project!
453                                                                                                                                                                                                                                                                             penguin India Twitter giveaway
454                                                                                                                                                                                                             Alleged plot by Indian intelligence to kill targets in Canada and U.S. reveals sloppy spycraft
455                                                                                                                                                                                                          Under siege: Huge network of Chinese fake accounts set up to disrupt India, US 2024 polls exposed
456                                                                                                                                                                                                                                                            My experience with dealing with Nestle support.
457                                                                                                                                                                                                                                             How much money does it cost you monthly to run your household?
458                                                                                                                                                                                                         Dr Kafeel Khan booked over writing against Yogi-led UP government in his book | Free Press Kashmir
459                                                                                                                                                                                                   Canada Calling: A Punjabi student\031s suicide, Brampton loans and the dark side of Canadian car culture
460                                                                                                                                                                                                                          Byju\031s founder Byju Raveendran pledges homes to raise funds for staff salaries
461                                                                                                                                                                                                                                              Japan's TDK Corp to manufacture iPhone battery cells in India
462                                                                                                                                                                                                                                                    I'm coping with hearing loss and it's giving me anxiety
463                                                                                                                                                                                                   Can anyone suggest sources to learn piano for free from absolute beginner to advanced in a thorough way?
464                                                                                                                                                                                                                               Looking for volunteers in an NGO run English Medium Secondary School in Pune
465                                                                                                                                                                                                                                                                                    My old coins collection
466                                                                                                                                                                                                                                     Gujarat ministers lock horns over figures of death due to heart attack
467                                                                                                                                                                                                                            India nears $4 trillion market capitalization, set to join US, China, Japan, HK
468                                                                                                                                                                                                                                                              Fed-up with education system and unemployment
469                                                                                                                                                                                                                                                              Results of 2023 Assembly elections in Mizoram
470                                                                                                                                                                                                                  Rajas of rat mining, heroes of Himalayas have no insurance, safety gear or social dignity
471                                                                                                                                                                                                                                           Heavy rains to lash Chennai and neighbourhood till dec 5 morning
472                                                                                                                                                                                                                  Man along with four friends rapes sister, kills her then filed a missing person complaint
473                                                                                                                                                                                                                                          What Do The State Election Results Tell Us About Indian Politics?
474                                                                                                                                                                                     What was the creation of today\031s Indian states\031 borders based on? Why are they so different in their population?
475                                                                                                                                                                                                                                                                                     Use Ola with US number
476                                                                                                                                                                                                                                            Need help with birthday gift, online gift site recommendations?
477                                                                                                                                                                                                                                               3.5 year gap in resume. Can anyone please offer some advice?
478                                                                                                                                                                                                                                                  What positive changes have North Indians seen since 2014?
479                                                                                                                                                                                                                                                                                  Gifts for Indian Parents?
480                                                                                                                                                                                                                                                   AAP loses all seats in polls, gets fewer votes than NOTA
481                                                                                                                                                                                                                                                             Help me make sense of this matrimony conundrum
482                                                                                                                                                                                                                 Which academic degree will be beneficial for me in the long term and how do I plan it out?
483                                                                                                                                                                                                                                                                 Looking for people to go Skiing in gulmarg
484                                                                                                                                                                                                                                            Is real estate investment in India worst in terms of liquidity?
485                                                                                                                                                                                                                                                 Why doesn't India care about its citizens internationally?
486                                                                                                                                                                                                                                                                                         Movies and society
487                                                                                                                                                                                                                                                    I am a new supporter of BJP as I want things to be done
488                                                                                                                                                                                                                                                21-year-old PhD student in Bengaluru's IISC dies by suicide
489                                                                                                                                                                                                                                              Lured into part-time job, Bengaluru techie loses Rs 61.5 lakh
490                                                                                                                                                                                                                                      Bihar receives global acclaim at COP-28 for afforestation initiatives
491                                                                                                                                                                                Global Box Office: Ranbir Kapoor\031s \030Animal\031 Is Worldwide Top Film, Ahead of \030Napoleon,\031 \030Hunger Games\031
492                                                                                                                                                                                                      War hots up as ED asks Tamil Nadu DGP to book state vigilance officials | India News - Times of India
493                                                                                                                                                                                                                                                   BJP sweeps Hindi heartland, Congress surges in Telangana
494                                                                                                                                                                      U.S. assassination attempt charges 'confirm' Trudeau's claims about India had 'real substance,' former national security advisers say
495                                                                                                                                                                                                                                                                             India Type M to Shucko Type F?
496                 As a Mongolian born in China, I would like to ask my friends in India: What is the reason behind global media consistently reporting negative news about India, while turning a blind eye to situations in Pakistan, Myanmar, Indonesia, China, and Turkey, which appear to be even worse?
497                                                                                                                                                                                                                          Are there any cheaper alternatives online to stores like Chumbak and Indiacircus?
498                                                                                                                                                                                                                             Flexible online jobs that don't require a degree? I have a Physics background.
499                                                                                                                                                                                                                                                                Has Aadhaar Seeding to a bank been stopped?
500                                                                                                                                                                                                                                                        Eureka forbes Water purifiers for villages in India
501                                                                                                                                                                                                                                     Mom's share of the property and the, to say the least, annoying uncle.
502                                                                                                                                                                                                                                                            Divorce in indian context - cause of separation
503                                                                                                                                                                                                                          After Karnataka, strategist Sunil Kanugolu pulls off another big win for Congress
504                                                                                                                                                                                                                                                                            Growing feeling of hopelessness
505                                                                                                                                                                                                                  Land Value Capture: A self-financing and sustainable model for infrastructure development
506                                                                                                                                                                                                                                                    How difficult is it to obtain a Restricted Area Permit?
507                                                                                                                                                                                                             Hi Redditors of India, What credit card do you people use? And which ones would you recommend?
508                                                                                                                                                                                                            Court Notice. My vehicle no. challaned online wrongly while the photo shows some other vehicle.
509                                                                                                                                                                                                                                                                                   Carrying Electronics Kit
510                                                                                                                                                                                                                                                                                            Find an Old FIR
511                                                                                                                                                                                                                                                      Bags are so handy, why are they such a taboo for men?
512                                                                                                                                                                                                                                                                                     Credit Card As Student
513                                                                                                                                                                                                                                          South Indian wanting to learn Hindi, what's the best way forward?
514                                                              JNU prof Nivedita Menon: No point in going back to Nehruvian secularism | Her talk on her book \030Secularism as Misdirection: Critical Thought from the Global South\031 drew about 100 professors, academics and students at Delhi\031s IIC
515                                                                                                                                                                                                       Assembly triumphs no guarantee for Lok Sabha victory, data reveals, but can impact national politics
516                                                                                                                                                                                   How much tax do Youtubers pay who earn more than 2 crores pay? Do they operate as a business and pay bare minimum taxes?
517                                                                                                                                                                                                               How can an Indian say that vegan diet is lacking and it is only for wealthy people in India?
518                                                                                                                                                                                                                                                                How are news channels ahead of ECI website?
519                                                                                                                                                                                                            Ahead of INDIA meeting, AAP rubs it in, lays claim to \030largest Oppn party in North India\031
520                                                                                                                                                                                         Modi road show, celebration with 10,000 supporters, gratitude for women voters: BJP set to celebrate grand victory
521                                                                                                                                                                                                                                         A fellow Pakistani Kashmiri needs some help on the family lineage.
522                                                                                                                                                            How to invest separately without mixing MF,STOCKS for two persons in a single portfolio? I don't know how to frame it, Just look in description
523                                                                                                                                                                                                                                                        What's your review of NSDL Jiffy Advantage account?
524                                                                                                                                                                                                                                                                            Guys beware of this OLA scam!=¨
525                                                                                                                                                                                                               Anyone having health insurance from HDFC Ergo \024 what is your experience regarding claims?
526                                                                                                                                                                                 My Samsung Smart TV is repeatedly malfunctioning, I suspect Samsung has sold defective products and I want to sue Samsung.
527                                                                                                                                                                                                                                                                                  child abuse by stepmother
528                                                                                                                                                                                                          What explains BJP\031s massive MP lead: Last-minute push, Congress\031s organisational weaknesses
529                                                                                                                                                                                                                                         Does anybody knows any neurologists who can cure optical migraine?
530                                                                                                                                                                                                                  Pro-Kabaddi is bigger than IPL in small towns. And India is making it truly international
531                                                                                                                                                                                                                                                                Success rate of being a therapist in India?
532                                                                                                                                                                                                                                                                            ASS mobile tech, Bangalore (OC)
533                                                                                                                                                                                                                                                               Is data analyst job is needed in Arab Gulf??
534                                                                                                                                                                                                                                                      COP28: India not party to green pledge by 118 nations
535                                                                                                                                                                                                                                       Mysterious Transaction of 2 Lakh Rupees in SBI Account - Need Advice
536                                                                                                                                                                                                                                                         How good are companies like HomeLane and LivSpace?
537                                                                                                                                                                                                                                                     Can a policeman fine me if he does not produce his ID?
538                                                                                                                                                                                                                                                                              Need help finding a folk song
539                                                                                                                                                                                                                            Found these old coins from my grandmothers collection . Are they of any value ?
540                                                                                                                                                                                                                               Infosys techie loses Rs 3.7 crore to scammer posing as TRAI official: report
541                                                                                                                                                                                                                                                                          Customs duty on imported RC cars.
542                                                                                                                                                                                                                     Have we as a culture collectively forgotten true heroism? Rant on Animal and Bollywood
543                                                                                                                                                                                                                                                                  2023 Assembly election results megathread
544                                                                                                                                                                                                                                                     Why a murder plot will not turn the US away from India
545                                                                                                                                                                                                     Can someone tell me where is this Taj located? I have been using google images to find this but no use
546                                                                                                                                                                                                      Is starting a business as a common man going to be met by a series of gatekeepers looking for bribes?
547                                                                                                                                                                                                                                               ¹16,181-crore cyber fraud case: Thane police arrest two more
548                                                                                                                                                                                                                                                                       Zee Music Songs Are Back On Spotify!
549                                                                                                                                                                                                                                           In Gujarat, after fake government offices, now a fake toll plaza
550                                                                                                                                                                                                                                                                                Traveling with Dog in Train
551                                                                                                                                                                                                                                                                            Language Learning and Traveling
552                                                                                                                             Stubble burning: After imposing Rs 2.4 crore fines, Punjab government goes soft on farmers | Farmer union leaders say they have been assured that no one will be forced to pay
553                                                                                                                                                                                                                                                QR code scams: How to identify and be safe from such tricks
554                                                                                                                                                                                                                    'Will attack Parliament on or before Dec 13': Pannun's new threat over plot to kill him
555                                                                                                                                                                                                                        Judges want reforms in cricket, hockey, but not judiciary: Congress MP Rajiv Shukla
556                                                                                                                                                                                                                                                        Delhi among most unsafe cities for women: NCRB data
557                                                                                                                                                                                                                              Kolkata declared safest city in India for third consecutive year: NCRB report
558                                                                                                                                                                                                                                                                    Cancer Chose Me, But I Chose How To Die
559                                                                                                         AMA Alert: Join us for a live AMA session with Newslaundry's Managing Editor Manisha Pande, and Co-founder &amp; CEO Abhinandan Sekhri, on December 7th at 6:00 pm IST in r/india. Don't miss out!
560                                                                                                                                                                                                                                       Can a rat do this? This is on 16th floor main water line at entrance
561                                                                                                                                       Whose Ayodhya? | City\031s cultural heritage, encompassing Muslim, Buddhist, Jain, and Hindu influences, is being overshadowed by the construction of the Ram Mandir
562                                                                                                                                                                                                              Unearthing The Mystery of Sinauli | Secrets of Sinauli with Manoj Bajpayee | Discovery+ India
563                                                                                                                                                                  Dog bite cases double in 3 years, 30% cases of rabies occur in India, says govt | Every minute 6 dog bite cases take place in the country
564                                                                                                                                                                                                           No food, electricity and internet connectivity: Chennai battles aftereffects of Cyclone Michaung
565                                                                                                                                                                                                                                                      Why are some freebies revdi while others are welfare?
566                                                                                                                                                                                                           \030Assassination\031 plot against Pannun: Will wait to see results of India\031s probe, says US
567                                                                                                                                                                                                                                     All these "Name a Star" websites are a scam and you should avoid them!
568                                                                                                                                                                                                                                 Indian Navy ranks to be renamed as per Indian culture: PM Modi on Navy Day
569                                                                                                                                                                                                                                                                  A better process to enter Indian airports
570                                                                                                                                                                                                                                      ISRO brings back Chandrayaan-3 propulsion module to Earth\031s orbit.
571                                                                                                                                                                                                                                                        Man refuses to leave mom during fire, dies with her
572                                                                                                                                                                                                                                                                            Tricks to get cheaper flights ?
573                                                                                                                                                                                                                              Banks Write Off Rs 10.5 Lakh Crore In 5 years, NPA Recovery Rs 7.1 Lakh Crore
574                                                                                                                                                                                                                                       Over 35,000 Students Died By Suicide Between 2019-21: Union Minister
575                                                                                                                                                                                                                      i feel done with the way our country is being run and i have zero hope for the future
576                                                                                                                                                                                                                                                                                           Kedarkantha trek
577                                                                                                                                                                                                                                                                 Please help me find this old Bengali movie
578                                                                                                                                                                                                                                                                                Good art colleges in India?
579                                                                                                                                                                                                         50 lakhs for a veteran\031s life? Stop playing politics with Martyrs, servicemen and ex-servicemen
580                                                                                                                                                                                                                                  Is it easy to get bland food in restaurants? (Food not drenched in curry)
581                                                                                                                                                                                                                                               IRCTC - How do I get a refund on a counter bought WL ticket?
582                                                                                                                                                                                                                                                                       Never Book tickets through Cleartrip
583                                                                                                                                                                                                                                             My experience with ordering from Sennheiser India online store
584                                                                                                                                                                                                                                                            Have anyone heard of forced corruption system ?
585                                                                                                                                                                                                                                                                              Why are roads in TN horrible?
586                                                                                                                                                                                                                                                India is filthy and should not be romanticised by the West.
587                                                                                                                                                                                                                                                                                 North India Itinerary Help
588                                                                                                                                                                                                                                                                   Is it scam or I should take some action?
589                                                                                                                                                                                                           Odd one out as i don't like core computational science but still in data science field. Help me.
590                                                                                                                                                                                                                       First generation lawyer here, how to get a decent job in India ? (35-40k pm atleast)
591                                                                                                                                                                                                                   Ideal business bank account for hotel/restaurant/banquet hall based businesses in India!
592                                                                                                                                                                                                                                                                  Will "Poor Things" get a show in Kolkata?
593                                                                                                                                                                                                               Cyclone Michaung tracker live | Cyclonic storm makes landfall in A.P.; rains stop in Chennai
594                                                                                                                                                                                                                    U.S. Deputy NSA raises Pannun plot case, calls for India to hold the guilty accountable
595                                                                                                                                                                                   Warmest decade in history also saw drop in deaths from \030extreme climate events\031: World Meteorological Organisation
596                                                                                                                                                                                                                                                                             Traveling from Poland to India
597                                                                                                                                                                                                                                                     Pathetic conditions in my locality, need suggestions..
598                                                                                                                                                                                                                                                                      how can i start with online tutoring?
599                                                                                                                                                                                                                                    Three brothers booked in UP for forcibly converting woman, her daughter
600                                                                                                                                                                                                                                 How can I obtain the CCTV footage from the redbus for my specific journey?
601                                                                                                                                                                                                                                       Seeking Guidance on Affordable Universities with English Instruction
602                                                                                                                                                                                      What is your opinion about these cheap "memory foam" "orthopedic" mattresses that are flooding the market these days?
603                                                                                                                                                                                                                     Men of India who do microneedling to combat hairfall, which device do you use and how?
604                                                                                                                                                                                                                                                                      Sensex returns by each prime minister
605                                                                                                                                                                                                       UPDATE: Bunny, the kitten who got hurt by a bike completed her treatment and found her forever home.
606                                                                                                                                                                                                                                                          UPDATE: Chhotu got adopted, all thanks to reddit.
607                                                                                                                                                                                                                                  Karnataka HC suspends live streaming of proceedings after porn was played
608                                                                                                                                                                                                                                      Sunset on Flag Hill above McLeod Ganj, HP. Fujifilm XT30II, 3000x2000
609                                                                                                                                                                                                                 Over 35,000 students committed suicide between 2019-21: MoS Social Justice tells Lok Sabha
610                                                                                                                                                                                                                            INDIA bloc meeting postponed after key leaders decide to skip December 6 huddle
611                                                                                                                                                                                                                         While We Watched: John Oliver in conversation with Ravish Kumar &amp; Vinay Shukla
612                                                                                                                                                                               "Some things are best left unsaid" : Justice SK Kaul On Deletion Of Petitions Against Centre's Delay In Judges' Appointments
613                                                                                           Revealed: Global private hospital group embroiled in \030cash for kidneys\031 racket. Desperate young people from Myanmar selling their organs to rich patients of India\031s prestigious Apollo Hospitals chain
614                                                                                                                                                                                                                                                           Modi plus Hindutva proves too tough for Congress
615                                                                                                                                                                                                          Supreme Court asks if unmarried women having children through surrogacy is against Indian society
616                                                                                                                                                                                                      FIR Lodged Against Dr Kafeel for Maligning Government's Image in Book | Lucknow News - Times of India
617                                                                                                                                                                                                                       Rashtriya Rajput Karni Sena national president Sukhdev Gogamedi shot dead in Jaipur.
618                                                                                                                                                                                                                DMK MP Senthil Kumar stokes controversy, says BJP wins elections only in 'Gau Mutra' states
619                                                                                                                                                                                                                                    [Serious]Help .. Nearby Building redevelopment Causing Too much Noise .
620                                                                                                                                                                                                                                                 468 People Took Their Lives Every Day In \03122: Ncrb Data
621                                                                                                                                                                                                   Over the weekend I set two new Indian freediving records. [posting again since my last post was removed]
622                                                                                                                                                                                                                                                        India has the highest number of vegetarians: Report
623                                                                                                                                                                                                                     Why return of Chandrayaan-3's Propulsion Module to earth orbit is a milestone for ISRO
624                                                                                                                                                                                                                                                    Lone 100m runner in infamous Delhi meet fails dope test
625                                                                                                                                     Join YouTube educator Dhruv Rathee, recently featured as TIME Magazine\031s Next Generation Leader 2023, for a Live AMA session on December 6th at 9:30 pm in r/india.
626                                                                                                                                                                                                                                                                          What's killing Dehradun's litchis
627                                                                                                                                                                                                                                  Accounts From China Posed As Indians, Tried To Spread Fake News: Facebook
628                                                                                                                                                                 Seeking Travel Advice: Rajdhani Express 2A Journey from DDU to NDLS on Jan 1Oth with RLWL/3 - Confirmation Concerns and Contingency Plans?
629                                                                                                                                                                                                          'CID' actor Dinesh Phadnis passes away due to liver damage, co-star Dayanand Shetty confirms news
630                                                                                                                                                                                                        Friend not returning money which i lent him during emergency, getting ignored from him. What to do?
631                                                                                                                                                                                                                             Telangana: Congress Faces Revolt On CM\031s Name, Swearing-In Ceremony Delayed
632                                                                                                                                                                                                                                                               Heart attack deaths increased by 12% in 2022
633                                                                                                                                                                                       ISRO brings back Chandrayaan-3 Propulsion Module to Earth Orbit, Shows Off Tech to Return From Moon - Times of India
634                                                                                                                                                                                                                                    How KCR Defeated KCR In Telangana Polls By Not Listening To His Son KTR
635                                       Participate in our contest or cast your vote for the best photographs that show the beauty, diversity, and uniqueness of india! Winners get exciting goodies in our "India Through My Lens" contest to celebrate our 2 Million mark. Date extended til 12th December
636                                                                                                                                                                                                                                         No disruptions in Parliament this time, INDIA bloc parties resolve
637                                                                                                                                                                                                                                                 How a toxic poll campaign came back to bite Congress in MP
638                                                                                                                                                                                                                                                   468 people took their lives every day in 2022: NCRB data
639                                                                                                                                                                                                                                                                             India\031s international trade
640                                                                                                                                                                                                                                                                       Why Modi is cruising to a third term
641                                                                                                                                                                                                                                                                             Where can I get natural honey?
642                                                                                                                                                                                                                                                        Creating Content in Public Places : Right or Wrong?
643                                                                                                                                                                                              For all its flaws, all its authoritarians, you cannot help but look at China with awe and a tinge of jealousy
644                                                                                                                                                                                                                             Narayana Murthy's 70-hour work week advice reaches Parliament, Govt tells MPs&
645                                                                                                                                                                                                                                               Lok Sabha should have equal representation from every state.
646                                                                                                                                                                                                                             Indian police accused of harassing Sikh activist in UK before his sudden death
647                                                                                                                                                                                                                                      This guy is going through a lot because of the health system of india
648                                                                                                                                                                                                                                  A common person's view of BJP government since their rule started in 2014
649                                                                                                                                                                                                          ED charge sheet in Vivo case says \030web of companies\031 diverted Rs 1 lakh crore sent to China
650                                                                                                                                                                                                                                                       Obese Indians at Higher Risk of Sleep Apnea: Experts
651                                                                                                                                                                                                                               RBI leaves repo rate unchanged at 6.5% for 5th time in a row | Business News
652                                                                                                                                                                                               The PM has granted approval for India's first urban flood project in Chennai, with a budget of Rs 561 crore.
653                                                                                                                                                                                                              Unearthing The Mystery of Sinauli | Secrets of Sinauli with Manoj Bajpayee | Discovery+ India
654                                                                                                                                                                                                                                   U.P. \030gang rape and murder\031 of Dalit woman | Death in a flour mill
655                                                                                                                                                                                                                                                   Why caste divides Marathas as they rally for reservation
656                                                                                                                                                                                                                        \030Evil spreading fast\031: Haryana BJP MP seeks law against live-in relationships
657                                                                                                                                                                                                                                                      BJP VS NON-BJP STATES your views and Opinion for 2024
658                                                                                                                                                                                                                                        SC verdict on Dec 11 on pleas challenging abrogation of Article 370
659                                                                                                                                                                                                                          403 Indian students died in foreign countries since 2018: Government | India News
660                                                                                                                                                                                                                      Canada to limit study permits for international students, raise financial requirement
661                                                                                                                                                                                                           500 Note Holders: RBI issued new guidelines regarding Rs 500 note, people\031s concern increased
662                                                                                                                                                                                                                                  Painkiller Meftal Can Lead To "Adverse" Reaction, Government Issues Alert
663                                                                                                                                                                                                                                                                Bitter Fruits: M.S. Swaminathan (1925-2023)
664                                                                                                                                                                                                                              RAW cheifs in US and UK faced the wrath of recent developments of Khalistanis
665                                                                                                                                                                                                                      Revanth Reddy gets going on Day 1 as Telangana CM, green-lights six pre-poll promises
666                                                                                                                                                                                                                  Gautam Adani's wealth crosses $79 billion as share market rallies after BJP wins 3 states
667                                                                                                                                                                                                                                         RBI's heavy hand to keep Indian rupee in tight range for some time
668                                                                                                                                                                                                                Can I ask for a cut of the selling price if I help my grand aunt sell her property in Delhi
669                                                                                                                                                                                                                                                                      Which HDFC Debit Card to Choose From?
670                                                                                                                                                                                                                                                                                 Act Fibernet network issue
671                                                                                                                                                                                                                                                                                 Do you believe in "Nazar"?
672                                                                                                                                                                                   Fellow Indians, kindly suggest some good language institutes/Classes (online mode) to enroll into the Japanese Language.
673                                                                                                                                                                                                                don't share anything or progressive plan of your life if u want peaceful life,or exaggerate
674                                                                                                                                                                                                                                                     Dunzo's woes deepen as November salaries remain unpaid
675                                                                                                                                                                                                                                                                         The Semiconductor 'FOMO' for India
676                                                                                                                                                                                                                                                  India urged to set up $10 bn fund for chip designing labs
677                                                                                                                                                                                                                                    Songs from the kitchens of rural India | PARI's Grindmill Songs Project
678                                                                                                                                          Book Extract | Pranab Mukherjee\031s diary note: \030(Rahul\031s) lack of charisma and political understanding is creating a problem. Can he revive Congress?\031
679                                                                                                                                                                                                                                                                 When can India achieve Net Zero emissions?
680                                                                                                                                                                                                        Hello Pet Parents, Your Insights Needed! Share Your Pet Care Challenges. Conducting a small survey.
681                                                                                                                                                                                                                                     just got a 1rs credit in my account via gpay and i don't know this guy
682                                                                                                                                                                                                                                                                                  FedEx call. Is this scam?
683                                                                                                                                                                                                    Hi, this is Manisha &amp; Abhinandan from Newslaundry. Let's talk about Indian news, and how to fix it!
684                                                                                                                                                                                                                                      Behind Bengaluru bomb hoax, a woman\031s attempt to frame her husband
685                                                                                                                                                                                                             Join Manoj Bajpayee on 8th December at 5 PM on r/bollywood for a Reddit AMA (Ask Me Anything).
686                                                                                                                                                                                                                       Narendra Modi government stonewalls queries on Adani Group over inflating coal costs
687                                                                                                                                                                                                                       I am 32 year old Station Master in Indian Railways. I earn around 65k. Want to quit.
688                                                                                                                                                                                                 Should I cancel plans to visit Tiruapti, Madurai, and Rameswaram on 20th of this month due to the cyclone?
689                                                                                                                                                                                                                       [Advice needed] 27 never had a job, am I doomed? If not then where and how to start?
690                                                                                                                                                                                                                                                              Is Jyotish popular among young Indians today?
691                                                                                                                                 I fu*cked my life in every possible way and it seems like there's no comeback. All my life is full of misery and loneliness. I am going to end up alone in a room jobless.
692                                                                                                                                                                                                                      I'm a fresher and would love to get some opinion on this opportunity (career related)
693                                                                                                                                                                                                                         No question of \030equitable treatment\031 to US, Canada allegations: S Jaishankar
694                                                                                                                                                                                                                                                                             Who were the Sultans of Delhi?
695                                                                                                                                                                                                                                                                                             Jio home issue
696                                                                                                                                                                                                                  Bengaluru traffic police likely to launch AI-backed traffic management app on December 20
697                                                                                                                                                                                                                                                   Extortion fears grip Indian business community in Canada
698                                                                                                                                                                                                                           Kerala doctor dies by suicide after wedding called off over BMW, gold in 'dowry'
699                                                                                                                                                                                                                                                                                     POV you live in Mumbai
700                                                                                                                                                                                                                                  Help! What can I do to take down a (illegal?) godown in residential area?
701                                                                                                                                                                                                                                                                          This is the real Indian Railways.
702                                                                                                                                                                                                                                                                   The hypocrisy of BJP MP - Gautam Gambhir
703                                                                                                                                                                                                                      Reuters Takes Down Blockbuster Hacker-for-Hire Investigation After Indian Court Order
704                                                                                                                                                                                                         'This is Our Kashi, Not Karachi': Newly Elected BJP MLA in Rajasthan Tells Muslim Meat Shop Owners
705                                                                                                                                                                                                                                     GDP per capita of Indian states compared with similar countries (2023)
706                                                                                                                                                                                               Ayodhya Ram Mandir Opening: Sachin Tendulkar, Virat Kohli, Amitabh Bachchan, Mukesh Ambani among 8k invitees
707                                                                                                                                                                                                                                                       Veg, non-veg thalis get costlier in November: Report
708                                                                                                                                                                                                                                                                                 Pe(ople) Vs Po(liticians )
709                                                                                                                                                                                                                                            Are the rules on International Drivers Permits strict in India?
710                                                                                                                                                                                                                                                                       This new Capt America wears a turban
711                                                                                                                                                                                                            Delhi Police on alert after Khalistani separatist Pannun\031s video threat to attack Parliament
712                                                                                                                                                                                                     Kerala: Muslim man's home destroyed by RSS men after TV channel falsely accuses him in kidnapping case
713                                                                                                                                                                                                                                8 Independent MLAsbin Rajasthan critical for decision of who will be the CM
714                                                                                                                                                                                    What are some of the most glaring problems of India which can be either be rectified by the citizens or the government?
715                                                                                                                                                                                                                                                                                     Thoughts on BK Shivani
716                                                                                                                                                                                                                                 Editable map of the Jammu\023Baramulla line (including Chenab Rail Bridge)
717                                                                                                                                                                                                                                                                    For anyone wishing to study in the U.K.
718                                                                                                                                                                                                                                Man held for beating Dalit for using \030Jai Bhim\031 in FB profile picture
719                                                                                                                                                                                                                           A Century of Nationalism The Tagore, Gandhi and Ambedkar of 1923 &amp; India Now
720                                                                                                                                                                                                                                           The people keeping India\031s typewriters alive | BBC News India
721                                                                                                                                                                              Hi, I am Dhruv Rathee, a Youtube Educator, recently featured as TIME Magazine's Next Generation Leader 2023, Ask Me Anything!
722                                                                                                                                                                                                                                                               please suggest cheap and good enough violins
723                                                                                                                                                                                                                                              Apple wants iPhone 16 batteries to come from India, not China
724                                                                                                                                                                                                                                                                         Qatar visa on arrival for Indians?
725                                                                                                                                                                                                                                          Can i get HIV test done in India without doctor\031s prescription
726                                                                                                                                                                                                    How is the UK for pursuing masters as an Indian student? Or rather, is the UK an ideal choice for 2024?
727                                                                                                                                                                                                                  To people working in non-tech roles - How do you manage without being an IT professional?
728                                                                                                                                                                                \030No one will remember us\031: India\031s hero \030rat hole miners\031 who helped rescue 41 men from the Himalayan tunnel
729                                                                                                                                                                                                                                         India reveals that it has returned lunar spacecraft to Earth orbit
730                                                                                                                                                                                                                  In the salt deserts bordering Pakistan, India builds its largest renewable energy project
731                                                                                                                                                                                                                                    Laid-off | Need Referral | SDE-1 Full Stack | 1 Year of Work Experience
732                                                                                                                                                                                                                                                                   Where do rich people dump their clothes?
733                                                                                                                                                                                                                                                                          Lifafa concert Dec 10 (Bangalore)
734                                                                                                                                                                                                               BYJU'S Financial Crisis: Employee PF Credit Stopped Again Even After Deduction From Salaries
735                                                                                                                                                                                                                                            Blue dart marking package as consignee not available 4 days now
736                                                                                                                                                                                                                                                                   Can India be a significant player in AI?
737                                                                                                                                                                                                                                 Since everyone is showing their coins here some old notes, coins and a cup
738                                                                                                                                                                                                                                                  Who's in favor of a military draft on young men and women
739                                                                                                                                                   Is India moving back to monopoly or license raj era as take any sector all we see is only top 2-3 big businesses houses holding 80-90% of market shares?
740                                                                                                                                                                                                                    90 newly elected MLAs out of 230 in Madhya Pradesh have criminal cases, says ADR report
741                                                                                                                                                                                                                   Employer deducting Gratuity from my monthly salary - Is this legal or standard practice?
742                                                                                                                                                                                                                                                                         Travel vaccinations for 4 year old
743                                                                                                                                                                                                                                                                Going backwards in time. By @penpencildraw.
744                                                                                                                                                                                                                                                                         How do I find an account with RBI?
745                                                                                                                                                                                                            GST evasion of Rs 1.51 lakh- crore detected till October; 71 notices to online gaming companies
746                                                                                                                                                                                                              Crimes against women: Conviction rate in U.P. \030180 times higher\031 than national average.
747                                                                                                                                                                                                                                                                          Main reason for farmers problems?
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          text
1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     W.T.F is happening in Indian Schools????
5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I ordered a backpack from Decathlon India official website, and it was a prepaid order. I placed the order on 22nd of November. And yesterday(26/11/23) I got a message from them decathlon saying that my order has been delivered. But I didn't receive the order neither I got a call from any delivery guy. And the ridiculous part is that, they mentioned that the order was delivered on 27/11/23 where as they sent me the email of order delivered on 26/11/23 at 6pm. I'm seriously confused what to do, tried reaching out to them but they're not picking up the call. Please guide me, what to do in this situation.
9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I have traveled and lived in the US, Canada, New Zealand, Australia, Ireland, England, and several other countries for shorter amounts of time. There is a mentality with some Indians abroad to close the door of immigration behind them. They don\031t want to share or help. They got in, they\031re successful, and they don\031t want other Indians to come and succeeded, and they get violently jealous if I say, we should have more Indians immigrate to the countries that they made it to.\n\nJust remember, you can always go back to India, but you can never know what you\031re missing until you take that chance and go. Do not listen to any person who tells you abroad is overrated and it\031s difficult. It\031s because they\031re envious and jealous and do not want to compete with their own kind.\n\nThere is a growing group of Indians, who identify conservative to the point where they would want to restrict more Indians coming into western countries (even though they were able to succeed due to liberal policies). Do not listen to them. They are lower than dog feces. If you have the chance, take it. India has so many issues with overpopulation, pollution, infrastructure like traffic and healthcare, and education that if you have to deal with it, then try to make the best of it. My heart goes out to those, but if you have a chance to go abroad do not ever fumble that opportunity. 
11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hello, So I am a NRI, been in the US for 8 years. I have been traveling around India a lot last 2 years, spent a lot of time here. Here are my thoughts \n\n1. West is overrated- West is extremely overrated, the quality of life is poor, people are bad, health services are bad (to get an appointment it takes 4 months, in case of emergency the prices are so high), infrastructure is okayish - the roads are good I agree but they are not taken care of much, there is traffic issue and no work done to solve it, no public transport, with weather changes most of the infrastructure is dying\n\n2. Opportunities are everywhere now - I agree that before 5 years India had no opportunities but now things have changed. Salaries are good (if you work for it) and there are opportunities everywhere \n\n3. Family and Friends - this is the biggest one for me. After living in US for  8 years, I did not make any meaningful friendship. This is not just true for me but for a lot of people. After a certain age you need these things and this is something money cannot buy\n\nEvery place has positives and negatives, however I believe the obsession Indians have with the west is very much overrated and should end\n\nWhat do other NRI\031s, ex NRIs or other people think?
12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
13  The WC final is done and dusted but what I've not been able to dust myself off is the heartbreak, the pain and anguish of  so close and yet so far. This was by far India's best chance, having won 10 games on the trot and completely pulverizing every opposition on the way to the finals. Not one match prior to the finals that India played, can be called a close contest. It was a no-contest, we dominated and bullied our opponents every single game and every single time. So, what really happened to India in the finals? What came in the way of this juggernaut? 1.4B hearts are looking for an answer but the general response has been that it just wasn't our day.\n\nThe finals not being our day is a very lazy response. I understand that one team has to win and the other has to lose and it's going to be that way till the end of time. I'm going to try and dissect what went wrong and if at all, there's any learning through all of this.\n\nWhat went wrong?\n\n&amp;#x200B;\n\n\\- The selection of pitch was dumb to say the least. The ICC recommends that for critical games such as the Semi Finals and Finals, the host country should use a new pitch (a pitch that hasn't been used before in the tournament) which is less predictable, provides for an even contest between bat and ball and maintains the mystique around what's going to happen \n\n\\- If the BCCI had decided to use a road (a pitch no assistance whatsoever for bowlers, we would have easily won the game) as it would have simply been a contest against our batsmen versus Australia's, plus our bowlers are better than Australia's man for man\n\n\\- We need pace on the pitch at all times - IPL the spectacle and a commercial phenomenon that it has become is mostly because of the pitches that its played on. Surfaces that allows the ball to come on to the bat nicely and there are also some surfaces such as Chennai which favors spin and there's genuine turn on offer, but the pitch used for the finals was slow, sluggish and not designed for an competitive game of cricket. It was designed for India to win but was that proven wrong or what!\n\n\\- We ran into Australia, a team which simply knows how to win world cups. I was having this discussion (a day before the finals) with a brother around Australia never losing in the finals  and his response was great. He said, I know their performance has been good in World cups but this is not the same team that once had McGrath, Warne, Waughs, Ponting, Gilchrist etc. When he said that, I began thinking, why am I feeling so nervous then, Australia are not even half the side they were 10 years and not even 25% the side when we lost to them in 2003. A few days removed from the one-sided contest which was the finals, I'm pulled into thinking did that really happen? Again?\n\n\\- I think part of it is simply genetic, winning is a part of the Australian culture, the competitiveness, the zeal to never give up and the basic athleticism that they are taught while growing up is what separates them from the rest. The memories of seeing the various Aussie sides win in 1987, 1999, 2003, 2007, 2015 is another advantage, it makes the players feel that it can be done\n\n\\- Cummins won the toss and decided to play according to their strength (bowling) and didn't care about anything else. There are a number of instances where one feels that they should be in a position to simply exploit the opponents weakness but this was a case where Australia simply wanted to be grounded, be logical and back themselves with dew possibly becoming a factor later on. Rohit Sharma had said that he would have wanted to bat if he'd won the toss and the Aussies allowing that to happen reeks of self-belief and confidence. They say runs on the board in a knockout game is handy but Cummins' decision was one of self-confidence, belief over logic and stats!\n\n\\- Besides Rohit Sharma, Virat Kohli and to some extent KL Rahul, no one had any clue how to bat on the track. Surya Kumar Yadav was pulled back from SKY by some very intelligent bowling (slow bouncers, cutters and deliveries with zero pace on) and showed his skillset gap - He can't do nothing if there's no pace on the ball. If the ball isn't coming on to the bat, none of his 360 shots are going to work. Neither the sweep, the upper cut, the reverse sweeps, the switch hits - Nothing at all. He is a prime example of a batsman bred on IPL and not having a clue on how to bat when there's no assistance from the pitch. Him being compared to ABD is a joke!\n\n\\- Our bowling was decent but we simply didn't apply enough pressure. There were no slips, no Siraj and nothing was done differently when the momentum was with Australia. I understand that Shami was in great form and it was a bit of a gamble to give him the new ball (which partially worked with him getting a wicket) but Siraj should have also been tried within the first 10 overs when the ball was new. When nothing was working, why was the wrong-footed-in swinging menace tried? Why didn't Rohit bring himself on to bowl? None of the five bowlers were working when Head and Labuschagne were out there so why was nothing done differently? No courage or creativity!\n\n\\- I know hindsight is 20-20 but this is where leadership, calmness and being in the present are so crucial (Someone thinking of a certain captain?)\n\n\\- Our fielding was average and in typical Indian style, our shoulders began to drop as soon as the momentum was in Australia's corner. To not lose a wicket (Head's wicket 2 runs off the target doesn't count) after the score read 47-3 in a run chase of 241, is testament to giving up too early and not showing any fight\n\n&amp;#x200B;\n\nWhat's next?\n\n&amp;#x200B;\n\n\\- We really need to do some soul searching - Why does it keep happening to us in crunch games - 2003 WC final, 2014 T20 Final, 2015 Semi Final, 2019 Semi Final , 2023 Final? Why can't we keep our calm? Why do we need EVERYTHING going our way and only then we'll succeed? Why is momentum such a big deal to us? Why can't we counter-attack? Or simply stay calm? Why?!\n\n\\- There's plenty of appreciation going around as our performance was dominating, something we don't fancy from our folks especially in world cups but what should not be forgotten is we lost. Nobody cares if you reached a final, nobody cares if you came second and nobody (in the years to come) will care if you got there undefeated!\n\n\\- Mental conditioning and toughness is where we lack. We have filthy levels of richness but don't know what to do with it. The best infrastructure, the best cash cow in the IPL, Billions of dollars, but we simply are not experienced enough to be calm and don't have the gravitas that winners are to possess, we don't simply have the culture, the mindset to win in big games\n\n\\- Dhoni was an anomaly, cut from a different cloth. Winning and losing didn't matter to him too much and that is what calmness is like. Don't worry about the result, follow the process and enjoy the game - this bodes true for not just the players but the administrators as well. What was the need to tinker with the pitch when we were this unstoppable force? Why could we not have relied on the team to do their bit on their own? Why did we have to resort to using the financial muscle behind-the-scenes and use an old, slow, sluggish pitch?\n\nThe answer is we were not calm. Didn't play to our strengths. Played to the perceived weakness of the opposition (spin). We lost. Lost in a knock-out game. Lost to Australia. Lost in a final. It hurts. It really really hurts!
14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Must watch! Gives in sight on how politicians work.
15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 My passport expires in about five months. \nI live in British Columbia. The tatkal service is only available for Ontario jurisdiction apparently. Can I also apply to for passport renewal with Ontario jurisdiction even if I live in BC ?
17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I watched some South Indian-based content creators and standup comedians on YouTube and Instagram (eg: Satshya, Jordindian, Nirmal Pillai, etc..), and I noticed that most of them make content about Tamils, Kannadigas, and Malayalis at the same time. Still, they do not make much content about Telugu people in general. Yes, there are some who create content based on Telugu but they are mostly Telugu people themselves. Is there any reason for this? Do, Tamils, Kannadigas, and Malayalis not get along with Telugu people? or are they in any way different from the remaining South Indians?\n\nOr am I missing something??
18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I wanted some suggestions for a wedding venue in the mountains or the woods in india! \nHas anyone tried? And how much was the approx cost?
20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hi everyone,\n\nI've been using Kayak to compare prices, and I've noticed that Agoda is consistently showing the lowest prices. For example, a flight that is listed at 5.5k on other sites is only 4k on Agoda.\n\nI'm a bit hesitant to book through Agoda because I've never used them before. I've heard some mixed reviews about the site, and I'm worried that there might be some legitimacy issues with the tickets they sell.\n\nI'm wondering if anyone here has used Agoda to book flight tickets in the past? If so, did you have any problems with the tickets or the booking process?\n\nThanks for your help!
21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A cat around our house fell down from a roof and has broken her leg. &gt;!Her leg bone has broken completely and is exposed and she has had quite a lot of blood loss.!&lt; We took her to a public veterinarian hospital but all they did was give her first aid, an injection, and tell us that we need to take her to a private veterinary hospital.\n\nMy family really doesn't have money for private hospitalization. We're barely getting by as it is. I need advice. What are my options? Please help. (I live in New Delhi)\n\nEdit: I ended up taking her to an NGO in Najafgarh (this one: https://maps.app.goo.gl/3sNUt4PyoMUG1FKd6)\n\nThe lady there basically forced us into "donating" ¹1000. I'll update if she survives... or dies. Hoping for the best.
24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have extra-wide feet, and I'm looking for brands in India that offer sizes larger than UK 12. I need a size UK 13.5 but haven't found many brands in this category. If there is one, it tends to be quite expensive, around Rs. 3000 or more. The only brand I've come across is Bacca Bucci, priced somewhat below Rs. 1500, but I'm unsure about their quality.\n\nI've also seen New Balance providing shoes for UK 12 and above on their site [New Balance](https://www.nbshoesindiaonline.com/). However, it seems suspicious because even after logging in, I didn't receive any emails. Has anyone tried this website?\n\nAnother brand is [Nike](https://www.nike.com/in/), starting from Rs. 3900 for UK 13 shoes. However, there's an additional shipping cost compared to Amazon/Flipkart/Myntra.\n\nMost of these shoes are running/sneaker types. Do you have any suggestions for formal shoes?\n\n&amp;#x200B;
25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am sick and tired of misplacing the various ID Cards of my life. Sometimes i am required to keep them on me all the time. And add to that the several different ID cards issued by employers, institutions etc. And on top of that, the  bank related cards.\n\n**How about we have a universal All-in-One card. One card to rule them all.**  \nThis card should also have a chip for whatever security requirements. It should be updatable as easily as Aadhar card. Lets say someone doesnt have drivers license yet, so that area will be left blank. However, all other card numbers can be printed on the card. When he gets a drivers licesne, he will update his All in One Card like we updatge our Aadhar card.\n\nI know the privacy experts (and americans) hate this idea, for a lot of valid reasons, but i am the kind of guy who is ok with every spying those companies do on me. I am guilty as charged. I simply want a simpler and more convinient life. \n\nWhile i am on it, let me pitch a an idea. How about we have a **Universal Digital C.V.** A digital, govt. certified documents pdf file sort of thing, which will have all our original academic records, marksheets, pass certificates, degrees etc  , free from fraudulent degree nonsense . This way we can FINALY MOVE AWAY from carrying around our marksheets and degrees  wherever we go with the ever jhamela of attesting and fear of losing them.
26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Malaysia to allow visa-free entry to Indians from December\n\n https://timesofindia.indiatimes.com/india/malaysia-to-allow-visa-free-entry-to-indians-from-december/articleshow/105519225.cms
27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The events of November 1971 were pivotal in the history of India. During this time, tensions were high between India and Pakistan, and significant encounters occurred, shaping the course of history.\n\nIn a significant meeting at the White House, Indian Prime Minister Indira Gandhi faced off with US President Richard Nixon. Gandhi, resolute and assertive, made it clear that India wouldn't succumb to external pressures, stating India's ability to shape its own destiny.\n\nThis tense encounter led to the cancellation of the Indo-US joint media address, with Gandhi leaving the White House in her distinctive style. Reflecting on the encounter, Henry Kissinger, then Secretary of State, suggested Gandhi could have shown more patience, to which she emphasized India's resilience and determination against external influences.\n\nUpon her return to Delhi, Gandhi summoned the opposition leader, Atal Behari Vajpayee, for a closed-door discussion. Following this meeting, Vajpayee was designated to represent India at the United Nations, despite being regarded as a critic by Gandhi.\n\nWhen questioned about his support for the government at the UN, Vajpayee eloquently compared India to a garden where unity in crisis is crucial for survival, signifying his support for the nation despite differences.\n\nSubsequently, the world witnessed the US sending tanks to Pakistan and ceasing oil supplies to India through Burma-Shell, indicating their stance against aiding India. Undeterred, India resorted to diplomatic maneuvers, securing oil supplies from Ukraine.\n\nA battle in the Thar Desert resulted in the destruction of a majority of the tanks sent by the US, showcasing India's resilience. An eighteen-day war culminated in the capture of a large number of Pakistani prisoners of war, leading to significant geopolitical shifts.\n\nIn March, Indira Gandhi recognized Bangladesh's independence, and Vajpayee hailed Gandhi as "Maa Durga," symbolizing her strength and leadership.\n\nThese events had lasting effects, including the establishment of India's own oil company, Indian Oil, and solidifying India's image as a strong nation on the global stage. India's leadership in the Non-Aligned Movement (NAM) further emphasized its strength and influence in world affairs.\n\nDespite the passage of time, these moments in history should be remembered and passed down to future generations as a testament to India's resilience and diplomatic prowess during challenging times.\n\nCredits to: https://x.com/Paul_Koshy?t=HbiyJmDBr54d-eK2EM8o-Q&amp;s=09
28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I swear this is an actual question. My husband and I just had an argument where he said its not demeaning to be told to not attend puja on your period, and that while he doesn't agree with it, he won't let our future daughter attend to appease his mother because "its just one day". I already feel so yucky when his mother asks me if I'm on my period before a puja and I don't want my daughter to experience this ever.\n\nI feel like I am living in crazy land that its even a debate whether or not women feel demeaned when being told they are too 'unclean' to attend a puja at home. I feel like he severely lacks empathy or maybe he's just privileged to not have experienced such things as a man. He feels like I'm too rebellious and should pick my battles.\n\nWomen who were kept away during their periods, can you verbalise how you felt? Men, would this be a hill for you to die on for your daughters? Would you make your parents include your daughter or would you just let it go? I feel like I need outside perspective because I honestly cannot see his side on this one.
29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I am frontend Developer, 2023 Graduate. I have done 2 internships in past and carry 9 months of Experience with me at two different companies.\n\nTech Stack I am aware of includes - HTML, CSS, JavaScript, React.js, Redux, Typescript, Python, Sass, TailwindCss, styled-components, Git/Github.\n\nI am ready to work full-time, part-time, Freelance or on Contract Basis.\n\nI am currently in Pune, India and ready to relocate if give the right opportunity.
30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We have numerous laptop brands atm selling their machines in our country. I am asking about which laptop brand actually provides the best for the value. I am considering these brands here- Asus, HP, Dell, Lenovo, Acer and MSI. I use a pc for gaming as well for making bills and stuff for my father's business and for my own work as well. \n\nMy experience with hp has been really bad. Once, my laptop's screen stopped working. They declared to replace it. Its cost was 22k. I got it fixed later somehow. \n\nMy brother has an hp laptop as well. His laptop's motherboard was damaged as claimed by the company and needed to be replaced costing 30k. He had to get a motherboard from a local shop for 20k.\n\nThese are instances which have occurred already. We have moved on but now, I can hardly trust hp. But for future reference, I am asking which brand you trust the most and that they actually provide good service and a good product for how much the laptops cost nowadays.\n\nI am just adding my point here for what I know about these companies from sources like quora and YouTube tech channels-\n\nMSI doesn't have service centers in most of the cities. If something wrong were to happen, you'd have to contact them via helpline or take your laptop to the nearest service center.\n\nACER has cheap laptops comparatively for the specs they offer but apparently, they do cost cutting on other components and thus you are vulnerable to experience some issues.\n\nDELL really good brand but their laptops are on the expensive side.\n\nAsus, provides good quality laptops. Is really popular among gamers and editors for their rog and zephyrus series. Idk about the TUF series but it's the series which actually lies in the budget range. (I am considering budget laptops as those which cost around 60-80k for college students as and working adults who require some good specs, and their work can't be just done with a 30k or 40k laptop.)\n\nLenovo- Really can't say anything about this brand. I have no knowledge of em. I have heard about it being bad but also about being good.\n\n&amp;#x200B;\n\nI just want to clarify that I am a student, 12th grade. My knowledge in pcs and laptops in not very vast but I do tend to keep it to a level which I think is right for now. Also, I have not mentioned any specs at all. I have only mentioned the price range. Some of these companies do have an accidental damage protection package as well. My point with this post is to only know about your experiences with the said brands, or what you know about them. What brand should one consider first when going in this price range.\n\n&amp;#x200B;
31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For the last one month I've been getting loads of calls and messages from different scamsters. No idea I'm being targeted but it was just a minor nuisance at best. I've had fun too, one of  them was completely confused when I told him that I was very happy the credit card service fee was going to get debited, that was clearly not part of his script lol. \n\nOne of the scams is to follow some pages on YouTube and Instagram. They then pay you have taking your details, telling you to connect to their "receptionist" on Telegram. The receptionist then pays you after you share screenshots showing that you've completed the task and share a Telegram group link. I've pocketed 200 Rs from these scamsters (one gave 150, other gave 50) and I've joined the Telegram group which has over 300 members. Not able to post messages or see the other members apart from admin unfortunately, otherwise I would have messaged the members warning them that this is a scam.\n\nSo...what should I do? I plan to remain in the group and see what they do. I have the UPI ID's of two of these scamsters but I doubt the police will be able to do shit seeing that they are so openly committing a scam. Early on when I gave the details of a scamster committing APK download scam by raising a complaint online (I had the recording, screenshots and number), the only thing that happened was that someone from their department gave a 30 minute speech to me on call about how we should be careful about such scams, never download random apps, etc. He also admited that the police find it difficult to catch these guys.\n\nSo...any good idea people? Anyway I can help the other Telegram members in that group who may not be aware it's a scam? Any ideas on what I can do to harass these scamsters?
32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Had a flight at 28th costing 9k.\ntried to reschedule to 5th next month which was around 11k\nthey said the reschedule would cost 16k + the already paid 9k....\nhow? what is this ?
33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A very good friend is going through some difficult times. After being on an edge for a long time, he has finally started with therapy. His current therapist charges him around ¹800 per session on a video call. He needs therapy and wishes to look for slightly cheaper therapist. Let me know if anybody knows someone who will charge below ¹800. His location is Mumbai, but he can attend on video calls as well.
34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Here are the two viewpoints that are almost a decade old:\n\nhttps://www.youtube.com/watch?v=U-YJEDxJE8g\n\nhttps://www.youtube.com/watch?v=rcflvCd_V0g\n\nThere is a saying in one of the Indian languages: "Jaisi praja waisa raja"\n\nNo point in blaming the politicians; introspection on the part of the citizens is required!
41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What are the best apps, which have easy to use, offline hindi speech to text. I am looking for something for my grandparents, who are partially deaf. any recommendations would be very helpful.\n\n&amp;#x200B;\n\nPreferably for android phone
42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thise who have a home-bakery business or know someone. How do you deliver the cakes from your place to customer\031s place? Do you use any delivery service? How do you keep the delivery charges at reasonable rates?\n\nThanks in advance!
43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Anyone wanting reference of what I'm talking - [https://economictimes.indiatimes.com/news/elections/assembly-elections/rajasthan-assembly-elections/bjp-releases-party-manifesto-in-rajasthan/articleshow/105253721.cms](https://economictimes.indiatimes.com/news/elections/assembly-elections/rajasthan-assembly-elections/bjp-releases-party-manifesto-in-rajasthan/articleshow/105253721.cms)  \n\n\n[https://www.news18.com/news/india/stop-free-revdi-culture-heritage-enough-for-ups-growth-what-modi-said-at-bundelkhand-e-way-launch-5565121.html](https://www.news18.com/news/india/stop-free-revdi-culture-heritage-enough-for-ups-growth-what-modi-said-at-bundelkhand-e-way-launch-5565121.html)  \n\n\nHas any media channel questioned Modiji on this?  \n\n\nNo wonder we need so many gods.
45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am currently undergoing training at an MNC as a fresher since 2 months. I have been granted a visa last week and I'll be moving to the US next month for my master's. I've signed the offer letter but we don't have a bond(wasn't asked to notorize the offer letter). I am currently on a 3 month probation and I don't have any responsibilities as a trainee. Another colleague with the similar situation was asked to serve the notice period of 2 months.\n\n1. What are the exit procedures and repercussions I need to face as I'll be quitting amidst training?\n2. What are the consequences of not serving the notice period of 2 months?\n3. Is there proper reason, a way or a loophole which I can use to not be liable to any repercussions?
46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 years ago, 10 Pakistani terrorists (Lashkar-e-Taiba) infiltrated Mumbai via the sea and launched attacks at several locations, killed 166 and injured over 300 people.
47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am a 22 M wildlife biologist from Delhi.\nWhile pursuing my dissertation in the Palamau Tiger Reserve, i was chilling along the bank of a small pond in the middle of the forest waiting for a particular bird to arrive and like a total idiot who was bored, i put on my earphones.\nSuddenly i felt something was off and turned around to see this huge 4m Makhna (tuskless male) walking towards me.\n\nI was all alone, no network, pond on the right side, an 80 degree incline dune on the left and behind me.\n\nDecided to play it calm but this mf kept walking towards me and finally i decided that i need to make some distance.\n\nI was totally stuck there for 30 mins but thankfully this giant decided that i wasn\031t a threat and spared my life.\n\nSavdhaan rahe Satark rahe.
48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am a Youth Citizen of India. I am sad looking at the current political scenario. Because i have only a few choices neither of which i like.\n\nThe Big Two, so called #NDA and #INDIA are talking about everything except the actual issues which concern the youth.\n\nThey have forgotten that 65% of Indians are under 35. Where are the talks about providing employment, creating more opportunities and developing the economy.\n\nI wish more people among those 65% were concerned about their future, instead of identifying themselves with propaganda.\n\nThe only alternative to the current ruling party doesn't seem good. Why?\nBro mohabbat ki dukan se ghar nhi chalega. Nor will supporting right wing propaganda, help people like me who are concerned with the future. It will only benifit the ruling party to bulldoze their bills.\n\nWith little to no resistance due to assembly strength advantage, which i  believe undermines our spirit of democracy.\nI'm really looking for an alternative, but i think nothing else is there.\nThere is so much more to talk about.\nMaybe in my next post. #Elections\n\nPS: Jai Hind <î<ó
50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hello everyone,\n\nI want to get a new laptop but in no condition to afford a new one. I looked at refurbished laptop options from Amazon. Does anyone have any prior experience with refurbished laptops ? Are they good ? Can anyone let me know the Pros and Cons of one.\n\nThank You
51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I am travelling with a 5 yo and a teenager for new year.\n\nI've been to Goa 4-5 times and seen all the usual touristy places. We always stay at a resort in Calingute right next to the beach.\n\nWhat can I do differently this time? I would like to enjoy live music and dancing with the kids at a family-friendly place [like this](https://www.instagram.com/p/Cs9OFIHolh1/) .\n\nAre there any other activities we could do?
54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My friend (24,M) completed his BA.LLB degree this year in May, from an NLU. He has been working with a private practicing lawyer since then. He gave CAT this year, but doesn't know how can he prove his work experience during admissions and placements in future. The issue with working under such a lawyer is that there is no official joining letter. The payments too can be irregular and in cash mostly. How is one supposed to show their work ex in such a scenario?
57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hello guys I need advice, my sister (19) is living in a pg in thane from last year. Few months back she started getting texts on whatsapp which were like \034hi apko dekha meine..app acche lag rahe the ajj\035 and stuff like that she told me about it i called that number and i threatened that guy, he blocked me. \n\nFew months have passed last night around midnight she got a call from unknown number and he knew her name and said \034app mujhe pasand ho\035 . She told him that she is going to complain to the police and hung up. So today i took my friends phone number and called that number. He answered (true caller showed the name \034yadav\035 ) i tired to bait him. I said \034hello bhai kidhar hai \034. He replied kaun ?. I said sonu na ?. This dumb guy took the bait and said nahi \034kuldeep\035. I said mira road se na ? He said nahi *name of locality my sister is in* se hu wrong number .\n\nSo now we know his name is kuldeep yadav and my sister said she has given phone number to only two shopkeepers in the area. One is a water supplier guy who brings water(bisleri 20 litre one ) and one salon guy for a hair cut appointment.\n\nI am really worried for her safety, what can i do given the above information. Also she has a call recording from last night of him saying vulgur things. Please help and tell me what steps i can take. Sorry for the grammar im anxious
58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I'm travelling to Mumbai for a few days. \nI have some questions. I'd be thankful if anyone help me with these:\n\n- what SIM card should I buy and from which operator? Is it ok to buy from airport or not?\n\n- where can I find currency exchange with fair commissions?\n\n- is there an app to order online taxi? I've found zomato for food delivery, but didn't find any for taxi.\n\n- is Public transit safe enough for two foreign travellers?\n\n- is there any restaurants with less or not spicy food? (i guess it's quite a difficult thing to ask :))\n\nIf there's any other thing that I should consider kindly let me know e\017
59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Planning to buy Bosch Dishwasher. Not sure if 13-place is sufficient or if we should go for a 14-place model.   \nI understand the basic definition that 13-place will wash utensils for 13 people (13 plates, glasses etc) and 14-place model will send for 14 people worth of utensils. But this definition doesn't help. It is not always just plates and cups. Cookers, saucepan etc takes up a lot of space. I want to understand if anyone is using 13-places machine and feeling that it is too small and they should have gone for 14 places model.   \n\n\nThere is a significant cost difference b/w 13-place and 14 place models.  \n
60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I have nothing against people from these states, my girlfriend is from UP (not a great defence ik)I'm just curious. If I'm mistaken about the 'tolerance' feel free to correct me.\n\n\nThe most vegetarian states* are - Rajasthan (70-75%), Haryana (65-70%), Punjab (60-65% and Gujarat (60-65%). UP, HP and MP are around 50%. \n\n*I found different statistics so I've given a range. \n\nWhy is that we never hear of controversies or government interventions into meat eating from these states? \n\nJust google "Meat [state name] news" to see what I mean.\n\nI found nothing for Punjab, 1 or 2 old articles for Rajasthan and Haryana but a lot of articles from Gujarat and some for UP. \n\nEven though Punjab and Haryana are mostly vegetarian, I've found people to be generally tolerant of meat. As long as you keep it yourself no one cares. There's not much moral policing. You can get away with bringing it in your lunchbox to work and school. \n\nI have never been to Gujarat so I can't tell you the ground reality but the news says something.  \n\nWhen I went to UP (Mathura and Agra) \nI noticed there was less non veg street food than Ludhiana, Shimla, Chandigarh or Delhi but this is just anecdotal and isn't hard evidence. \n\n\n\nDisclaimer: While I'm technically a non vegetarian by Indian purity standards. I only eat chicken about 5-6 times/year on special occasions (not unlike many 'western vegetarians'). I don't have mutton and have never had beef, pork or seafood.
61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hi everyone, I am asking for an Indian friend who has a work permit for Germany. They have received a temporary job offer for Switzerland. Is it possible to hold both work permits at the same time or would my friend have to give up the German one to take the job in Switzerland? The job might be remote (and is temporary), so it would be a problem to lose the German residency.\n\nThanks in advance!
64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I am observing that it is getting more and more common to hear claims of important scientific inventions being made during ancient times in India. "*insert discovery/invention here* has been mentioned in the Vedas and/or Puranas, so it is likely that it was in use thousands of years ago" is something you get to hear a lot nowadays. \n\nWith that said, I am sure our scientists and engineers were busy doing cool stuff post-independence. I want to know if other redditors are aware of things that were invented in India after 1947, stuff which can be legitimately claimed as "Indian". I am not asking for stuff that was discovered/invented by Indians in other countries, especially Western countries. \n\nSo, what have we done that can be considered "novel" by global standards? Especially looking for answers from IT/computers, since we are an IT powerhouse.
65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I'm a BTech student and I think it's high time that I start managing my own finances. I want to learn a niche skill that will help me to earn some money while working online. So please help if you know any skill that I can learn.
66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Please help me find a home for Luna =O\nShe is a female indie-husky and is extremely smart and playful! She is around 8-12 weeks old and super athletic!\n\nDeworming \005 \n1st Vaccine \005 \n\nI stay in Central Delhi. Please inbox me if you are interested or have any Leads.
68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I was just looking at [this link](https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_number_of_physicians) on Wikipedia, which lists the number of doctors per capita. In it, you can see that India has only 8.6, whereas countries like the US(26.1), UK(31.7), Canada(26.1) and Germany(42.5) have much higher ratios.\n\nBut speaking from personal, anecdotal and news experience, I know that getting a normal GP in these countries is quite a lot harder than in India, often taking multiple days of waiting time, and finding specialists and getting complex work done, can take months or even years. By comparison, in India, neither my friends/relatives or I, have ever experienced waiting times beyond a few days. I'm just wondering why there is this statistical paradox.\n\nIs it just a product of my privilege living in an urban area, and being able to afford private hospitals(Apollo, Fortis, etc), or is there some other reason?
70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Question for freelancers here:\n\nI wanted to ask I received inward remittance from JP Morgan (Chase bank) to HDFC bank. \n\nThe issue is JP Morgan converted the USD to INR now I am trying to FIRC from HDFC Bank and I am not getting any help from them. What should I do in this case? \n\nI have also tried my RM to email JP Morgan and I haven\031t received any reply from them.
72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n\n\n\n22M\n\n\n\n\nEvery day I feel like shit , just after opening my eyes , till closing them . Escaping from reality in every sense possible because that's what I always do . Running from the challenge.\n\n\n\n\n\n\nI never took a stand for myself or anything I loved and kept losing everything , whatever good I had . All the chances I missed because I did nothing , just sit back and let all things happen, try to run away from the reality .\n\n\n\n\n\nDidn't take any risk, never worked hard as I always thought I was gifted but fuck this mindset honestly . I'd rather be hard working and be satisfy with my efforts than being gifted and taking everything as granted.\n\n\n\n\n\nAnxiety, depression and fomo took everything over and lead everything in such a negative way that I don't have any energy to correct anything. \n\n\n\n\n\nI never had any goals and even if I had any , I didn't work any hard for them . Loved a girl but was coward , couldn't express my love watching every single guy proposing her and taking a shot to date her , I underestimated myself and got insecure , acted like a bitch everytime and lost my chance and when a guy harrassed her mentally, I couldn't do shit . I hate myself to this day and it's been 7 years since all this happened . After that I got so insecure about myself that I stopped talking to any girl and completely because socially isolated , avoiding people . What if I love a girl and I couldn't save her AGAIN , I don't deserve anyone .\n\n\n\n\n\n\n\nI cut off all my friends because of fomo as my anxiety was wayy too much to handle from the fact that they all did what I couldn't. I cut everyone off silently and never contacted them ever again . \n\n\n\n\n\n\n\nSocial anxiety and everything happening around me triggers me to my past and this whole city and people reminds me that how coward I am . How shit I am .\nI just want to leave this city and never wanna comeback.\n\n\n\n\n\n\nGot addicted to smoking so badly after promising myself for so many years that I will never smoke no matter what. Addicted to all those shitty instant gratification dopamine bullshits . \n\n\n\n\n\nI try every single time to socialize but it doesn't work . Something triggers me so badly and I come back again to zero .\n\n\n\n\n\nWhen I see the guys who ever proposed the girl I loved , I want to k!|| them all . Every single one of them . \n\n\n\n\n\nI can't describe in words how shit I feel everyday and it's looking like never ending process , headaches are so common that normal times I feel abnormal and headches are normal .\n\n\n\n\nI wish I could finish all this but Naah . \n\nWhen I see any guy being with his gf , it reminds me how I never too any chance .  Guy with good career reminds me How I never too any chance . Guys with better life than me reminds me how zi didn't do anything to make mine better . \n\n\n\n\n\nLiving in past all the time since so many years , daydreaming to cope from reality and make everything perfect in the past .\n\n\n\n\nI wish I could be lesser of a bitch I was .
73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I wrote a bad 1 star review for a garbage bus operator/agency, got message from Paytm for thanking me for feedback and gave me 200 INR cashback on next bus ticket booking. But surprisingly I can't see my review under that bus? So did they not consider my review and didn't find necessary to post my review or did they deleted it gave me bribe to shut up lol?\n\n *Context:* Few ago I travelled using a AC sleeper bus with only one review of 4.9 since it was only available bus for me. It was a night journey after 11 PM It suddenly started raining that day just after I got out to reach the boarding point, well I said such a bad timing, but little did I know it was just a start. After bus started moving, AC inside bus started leaking water, so I asked operator to do something, he said he'll do something then after few more minutes the leak increased and operator said he'll ask the office for help since no other seats are available, while I was waiting for his response I had to open my umbrella to stop my seat getting more drenched in that dirty AC water, after 15-20 mins they said no other options are available right now so you can cancel the ticket and go home in this heavy rain or you have to adjust by completing this whole 5-6 hours of journey sitting on a sleeper seat which is already wet but since we had already almost left the city and operator wouldn't have enough moral concept to pay for fare way home in a heavy rain, so I had no choice but to continue my journey, I had to put blanket on the wet area, change the direction to sleep but it was uncomfortable as hell and cold at it's best.\n\nI raised this concern to Paytm help section but I got their reply after 3 hours enroute asking whether I took the journey or cancelled it. I told me the condition I was traveling in but I didn't get any response so I had to open new ticket for it but only response I got was since I availed the journey they cannot give damn about the condition it's between you and bus operators. I even tried contacting the operator office but got almost same response. \n\nSo my question is, isn't there anything I can do to send a review on their booking page? Since Paytm not interested in helping their customers and not posting reviews by their customers.
74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hey guys, I am working on a news(Indian to start with) comparison platform that will help people combat misinformation and media bias by  showing how  news stories are covered by different media sources with different political leanings and agendas.\n\nThe goal is to\n1. See how different media houses report on any particular news.\n2. Analyse the language/sentiment of the news(positive, negative, neutral)\n3. Hold media accountable by showing  detailed info on their reporters, owners,funding sources etc. \n4. empower people to make informed decisions based on facts and evidence.\n\nI would like to know your views on a few questions. It will help me make some key decisions. Please fill out this survey form.\nhttps://forms.gle/XnjB382tmEYWzuQs7\n\nYou can also let me know if you have any other comments or questions I should include in the form. Thanks.
75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Source - https://data.gov.in/
77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hey everyone,\n\nI am skilled in GIS, HMS and RAS, and have done some projects where I derive inundation depths and velocities for a rainfall event in a land parcel using rainfall and topography data. Mostly, these have been for land parcels where solar or other industrial developments are proposed. I want to know how to go about getting more projects of this nature and how to build a full-fledged career out of this. Please share your experiences and advice.\n\nP.S. I am based in India but am open to projects from everywhere.\n\nThanks in advance!
78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cross post from another sub. All credits to original poster
79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So I'm an avid coin collector. I've been collecting for the past 4 or 5 years. I don't buy any coins but I just collect all the cool ones I come across. And I inherited some old coins from my grandparents. Anyways so I have a nice collection. If I had to guess it would be around 100 different coins of from several decades. So my question is, where do I find the value of these coins and if I wanted to (I don't intend to currently), where can I find the value of these coins and where can I sell them? I see sites like numista and some other ones (can't remember their names) but those don't seem legitimate. I'm writing this cause I saw a couple of folks on here asking about their coins but if i asked about each individually it would take forever and be very boring to people who aren't that interested in coins. So like can you teach me how to get the value of my rare coins?\n\n(I don't know Hindi)\n\nTldr - How to find the value of indian coins?
84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hi all,\n\nHad a random thought today that if anything happened to my parents, I would have no idea what to do with regards to paperwork. Like do they have a will (and if so where), where their bank accounts are and how I should get them closed, whether they have life insurance or not, property papers etc... even the funeral side of it like what their wishes would be and where they would like their ashes to be scattered.\n\nI'm curious to know if anyone else has thought about this before and whether you did anything about it? Or if anyone has sadly gone through the loss of a parent/loved one, how did you manage all of these things alongside the grieving process? And did you have all this type of info beforehand or did you have to figure it out as time passed? \n\nTo me it seems like death is a very taboo topic but I can't help feeling like it should be discussed more openly as the kids are likely the ones that will have to manage everything in the end, and it would be a lot easier with some guidance.\n\nI get that I can just sit down and talk to my parents about this but wanted to see if there are others in the same/similar situation.\n\nEDIT: in this scenario, I'm imagining it to be a sudden/unexpected death where you may not have a chance to have these convos
86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Well my grandfather spent his childhood in Hyderabad state and he always seemed to be gratefull for being there as he always told stories about his friends and collegues who's families lost everything during partition. There was violence and riots immediately after Operation Polo (Sept 1948); when India liberated Hyderabad but according to him it was far less than in Punjab, Bengal provinces or other cities. You know that stereotype of Hyderabad being heart of Ganga Jamuna Tahzeeb? My gf was a big proponent of it.\n\nFor my grandmother it was in stark contrast. She lived in a district which was hotspot for the Telangana peasant/communist rebellion so she witnessed a lot of violence and sees the time as quite violent eventhough the radcliffe line was far from there, things only got better in the 50s.
94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I found this while, just wondering if its of any value and when its from.\nLend me your knowledge redditors  !
96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So one of my friend bought a phone from OLX (yes i know bad decision).\n\nThis phone that was sold to my friend was bought on some Flipkart some scheme or EMI (not 100% sure what this is) but they had some rule like if the customer don't pay the EMI Flipkart locks the phone until you pay the EMI. My friend was unaware of this and purchased it. \n\nNow the guy who sold him the phone stopped paying EMIs after selling the phone and now Flipkart locked it. My friend wanted to unlock the phone and called Flipkart customer care and told them he is willt to pay the remaining balance please unlock the phone. But apparently that balance has to be paid only from the account from which it was purchased. The seller's phone is switched off (not surprised). Now he can't do anything with that phone. \n\nThe guy who sold him the phone gave him a bill of similar phone with different IMEI number. My friend did not check at the time of purchase.\n\nIs there any way we can unlock the phone? Its fine even if the SIM doesn't work he will give to his grandmother for YouTube consumption. Spending 15k on a phone that is no better than a paper weight is haunting him.
99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hello everyone! I have completed my IGCSE abroad in 2018 but unfortunately misplaced the certificate and the statement of results during COVID time. I am applying for a certifying statement from Cambridge university from [here](https://certstat.cambridgeinternational.org/) so I would like to ask if it's accepted as proof for non ECR passport since I'm going to renew passport very soon. Thanks in advance!
100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I was searching for coupon codes online for Zomato and i found one "SIMPLNEW" , then I was asked for a OTP which i entered and my order has been paid , I have never heard about their app and didn't fill any other detail other than OTP, I panicked and cancelled the order.What should I do? I feel this is a bug but I'm worried , Ive heard legal actions are taken and I sure do not want legal actions to be taken ,i didn't even want them to pay for my order , how should I proceed?
101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Keep the spray inside glovebox, it will explode due to heat when parked in sun. \n\nIt quite handy and easy to use. Comment if you have ever used it on someone.
102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hi Lovely People, \n\nSo I have a question and I wanted to know an honest opinion about this. In India do you think in Today's time the gender play an Important role in Interfaith Relationship. \n\nWhat I Mean is If a Guy is Hindu and the girl is Muslim they will have better acceptance than a guy being Muslim and a girl being Hindu in today's time. \n\nIf someone can share how is it in places where there is a reverse calculation in demographic. For example in Hyderabad how would this turn out as compared to suppose in Pune?\n\nI have used the name of Hyderabad and Pune just as an example to explain my Question. \n\nPS - Please don't disrespect anyone.   \n
104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I am travelling to Barcelona, Spain for New Year\031s. I am using Skyscanner to scope the cheapest possible flight combo.\n\nI have read somewhere that it\031s not a good idea to use Skyscanner, kiwi.com, gotogate.com etc to book when the airline companies are different for different legs.\n\nFor example, one combo is I fly to Paris via Air India and to Barcelona using Vueling. Or, to Muscat using Air India, then to Istanbul and then Paris using Pegasus.\n\nIs this true? Am I better off booking individual flights from their respective airlines? \n\nAlso, I have Schengen visa for Spain. Do I still need transit visa or short stay visa for France (or Oman or Turkey)?
105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Received a call today from a person stating that there is some illegal fedex parcel on my name and am i using icici account. Surprisingly when i said i am outside mumbai and cant come to police station that person started abusing >#>#># i hope everything is fine only and I am not still scammed yet. Can somebody use this info that i use icici bank account ?
106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mitron, need your inputs. Planning to gift my wife an EV scooter. I\031ll also take it out for a spin every now and then. I have 3 options:\n\n1. Ola s1 air - feels like the right package in terms of features and money. \n- Except for disk brakes and alloy wheels everything is same as s1 pro. How important are those? \n- Hyper mode is also missing, but would you really need it every day? How different are hyper and sports? \n- Has a massive seat and I find cushioning better than Ather\n- Cruise control - anyone used it? How useful is it? \n- I found acceleration good in normal and sports mode. Actually better than Ather\n- Ride is a bit jerky. Even a small touch on brake will disengage accelerator, maybe it is something that can get used to \n- free extended warranty\n- true range of 110 km. Any existing users can validate this? \n\n2. Ola s1 pro - same as above, but pricey\n- no free warranty. 9k extra\n- colours are disappointing. Any suggestions? \n- true range validation? \n\n3. Ather 450x - same price as pro, but less range. \n- It is a smaller vehicle. Seat comfort so so\n- very easy to glide around traffic. Had a lot of fun in warp mode\n- real world range? \n\n\nI\031m in a situation like heart says Ola, because I loved the ride but mind says Ather because I don\031t know how reliable Ola is \n\nAny existing Ola or Ather customers around? Thoughts please!
107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am currently employed in marketing and have an MBA in the same. However, my passion is in Psychology and Counselling. \n\nCould someone help me out with clarity on which course and from which university/college can I pursue a degree in psychology so that I can practice it full time instead of my marketing job? 
108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           &amp;#x200B;\n\nhttps://preview.redd.it/ld0nyfafwv2c1.jpg?width=925&amp;format=pjpg&amp;auto=webp&amp;s=97a083a86f3a9108a5ea1ab4b11849ccca670022
109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hi Guys,\n\nI\031m 25 currently working as a project coordinator, will most likely be promoted to Assistant project manager in the next year. had few ups and down because of which I had to take a break for 2 years. \n\nAs my job is permanent wfh. I was thinking about pursuing \034distance\035 MBA if that would be beneficial for my career. \n\nAny other advice would also be appreciated.. \n\nThank you!
110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So guys i\031m planning a trip to gokarna with my friends (5 of us). Could y\031all suggest some good places to stay and things to do???\nThanks in advanceee
111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \nGuys, this is for my friends project. \n\nCan somebody direct me to where I can download the election manifesto of Congress party for state assembly elections conducted this year.\n\nI was able to find the pdf for karnataka, but Rajasthan , chattisgarh and madhya Pradesh manifestos in English are still elusive. \n\nThank you.
112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          From the US (desi girl born in America) and my dad is planning on going to India in a month or two months. What can I ask him to bring from there that would be of value and/or be more cost effective vs products from the US?  \n\nIdeally focusing more on goods (beauty supplies, jewelry (doesn't have to be real), clothing, etc)\n\n \n\n 
113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi everyone, I heard this song in a video introducing the Dutch and Indonesian troops, but it seems that the uploader himself doesn\031t know what song it is. \n\nThe introduction mentions it as "Southeast Asian style", but I personally think it's more like an Indian song. Can anyone help identify it?\n\n[https://www.bilibili.com/video/BV1FC4y1d7r3](https://www.bilibili.com/video/BV1FC4y1d7r3)
115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         My mom dad always taught me to be good to people, respect peoples boundaries even teachers praised me for well mannered in school days. My friends always have been toxic to me in Jr. college. Like trying to manipulate me or always trying to show me dumb in friend circle. I will share one of my instance with you guys.\n\nWe took a group picture and in that I was looking at a guy (even I didn't know I was looking him while taking picture)\n\nFriend 1: Kisko dekra hai (my name)?\n\nFriend 2: Muje phle se shak tha (my name) pe. Vo gay hai.\n\nFriend 3: muje pata tha (my name) phle se ladko ko like karta hai.\n\nWhen I say i don't like being called gay. The say: itna serious kyu hai? hum bas mazak karre hai.\n\nMazak mazak me kuch log muje seriously gay samajne lage :)\n\nThey have been constantly making fun of me directly or indirectly. This situation has made me mentally ill. My relationship with my gf has been worse because of my friends. My gf says "why don't you reply them back with a comeback". I am very bad at comebacks. Sometimes I comeback but it backfires at me again.\n\nMy friends know I get triggered so they make fun of me purposely. So I stopped reacting to them. But somehow they pull me in such conversations.\n\nEven in work life people are so toxic. They will say stories about me and laugh which never happened to me. And people do believe I do some shit. People say ladkia ek dusre ki chugli karti hai. mens make friends quickly ek dusre ko bhai jaise dekte hai. Lekin work life me jo game kelte hai MY GOD. I guess both genders have good and bad people.\n\nI do have good friends in my life. But in work life I have to face them everyday which messes up my head. My parents raised me well but the outside world is so cruel. Even I started to bully my friends. Everytime I bully I feel bad about myself because this is not me.\n\nHave you guys faced such situation? What would you do in such situations?\n\nPardon, my English gets messed when I am angry.
116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       a month ago i visited India to meet with some colleagues on a joint project and the hospitality we were shown was incredible, we were given tea and served delicious hot lunch every day. now, some Indian colleagues will be visiting the United States in a few weeks and we would like to make them feel as comfortable and welcome as they did for us.\n\nmy other American colleagues and i want to be good hosts to our Indian colleagues and show the same hospitality, in the US it isn\031t typically customary to treat visiting workers to meals and such in my industry, as such our managment hasn\031t planned anything. but that feels wrong to me and some others.\n\nunfortunately there are no good indian restaurants to cater lunches& we\031ll want to provide vegetarian dishes as that is what we were served when we visited but beyond that we are not sure what cuisines would be preferred. our cafeteria is not vegetarian friendly.\n\nwe plan on providing and serving tea, but if YOU were the one visiting: what else would be appreciated in terms of food and hospitality from visiting coworkers?
117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My parents retired a couple of years ago and initially they enjoyed the retired life due to no work stress and daily hassle of travelling.\n\nHowever in the recent times, they have said they sometimes feel bored now as they have ample time. I want to ask the fellow redditors for suggestions about the engaging activities or part time jobs (money is not the priority, being involved in something meaningful is the only priority) that people prefer after their retirement.\n\nLooking for some nice suggestions. Thanks in advance.
118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What are some good health insurances one can buy when you are in your 50s?  This is so that you are can decently better rates which you hope will help you later when you retire and beyond.  Any suggestions would be appreciated.  Thank you.
120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Posting this as I had a poor experience with zomato and another restaurant from which i ordered. \n\nCustomer care told me they cannot help as the order did not spill. It did not matter if it had open packaging. There response "It did not spill saar I cannot help you". Restaurant isn't liable as a 1 star zomato review isn't detrimental to their operation. \n\nAfter ordering for thousands of rupees per month and using their fancy subscription I learned a hard lesson that if their is anything wrong with your food it's on you. No one can help you and its a risk that you undertake when ordering online.  \n\nAlso, how many of you where aware of this TOS: \n\n" \n\ne. The acceptance by a Delivery Partner of undertaking delivery of your order shall constitute a contract of service under the Consumer Protection Act, 2019 or any successor legislations, between you and the Delivery Partner, to which Zomato is not a party under any applicable law. It is clarified that Zomato does not provide any delivery or logistics services and only enables the delivery of food and beverages or Products ordered by the Customers through the Zomato Platform by connecting the Customers with the Delivery Partners or the Restaurant Partners or the Store, as the case may be.\n\nf. Where Zomato is facilitating delivery of an order placed by you, Zomato shall not be liable for any acts or omissions on part of the Delivery Partner including deficiency in service, wrong delivery of order, time taken to deliver the order, order package tampering, etc.\n\n"\n\nFinally I will take cooking seriously from now own as this experience as absolved my willingness to use food delivery app.\n\nSo this was my motivation to learn to cook.\n\n&amp;#x200B;
121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Posting for a friend as she's not in reddit.\nShe joined the firm (more than 20 employees)in may'23 and she's wants to go on maternity from feb'24. However her firm is denying her the privilege stating that firm's policies states that emp must complete 1 yr to be eligible whereas maternity benefit act states a a working period of 80 days to avail this privilege.\nDoes firm's internal policies stand above govt law?\nCan she do something to fight for her right?\n\nNote - she has her leave policies copy from the time of joining and that mentions 80 days criteria as per govt however, updated policy on her HR portal states the condition of one year.
122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One of my first memories was 3 year old me sleeping with my dad and he putting his hands under my panties and put my tiny legs around his hips so that he could touch his dick on my vagina...it was dark and I was wide awake at night innocently wandering what my dad is doing to me and why is he hurting me...he would kiss me on the lips in the lift when we are alone while drop me at school, and it wasn't an innocent parent-child kiss at all. I knew it was bad enough to not ask for that kiss again infront of my mom. I knew what my dad was doing to me every night while everyone are sleeping.\n\n It was happening to me almost every night till I was 10. It felt good, but kinda knew it was something bad, that's why I never told about it to anyone. I didn't know it was sexual assault, I didn't even know what that ment, but somehow I got to know that what my dad was doing would get me pregnant, so I told him when my periods started, he looked embarrassed.\n\nBut then...when I was growing in to a woman at 12, he came up to my room to wake me up and slept beside me on bed and grabbed my boobs, I ran downstairs to living room as fast as I could. He did it again.. put his hands under my pants for 10 mins when i was going out to play.  Mind you my dad was a very abusive toxic guy, all of my family members are always scared of him that's why i couldn't even oppose what he was doing since I thought he'd get mad at me...but after that incidence immediately said sorry and never did it again..\n\nI told everything to my mom and brother when I was 14...but her reaction was " we can't do anything now, since there is no proof" SERIOUSLY?? That freaking broke me.\n\nHe's 52 y/o now. But I do see how he still looks at little girls and touch them, their innocent parents think that my dad just love kids in general. But surprisingly I was never loved as a child as normal. I actually never felt like a child my whole childhood. And I just became the silent shy girl with not much friends my whole life. I still don't have friends.\n\nOne of the room of my house is given to 2 girls for rent. A few days before.. me, my mom and my brother went to stay at my grandmother's house (mom side) for diwali... 1 girl went to her home and 1 was left alone with my dad.\n\nHe touched her,commented on how beautiful she is and wanted a wife like her, asked if she wants to go to hotel, gave her multiple missed calls in morning, asked if she wanted ice cream and did most of the communication with her while holding her hands, told she could sleep on the bed next to him if she was scared at night. grabbed her hand while she was escaping to room. That girl was scared to death...she gave rent money and left the room the next day, she called to meet me and told me everything.It gave me flashbacks and all my trauma came back and i couldn't stop crying.\n\nI warned my dad to never talk to little girls or girls my age anymore. I can't stay in this house now.. I really cant. I can do anything to get away from my dad and this house since my mom didn't take this seriously too. I just never want to see my dad again. \n\nI want him to go to jail. Can I do anything to get justice? Sure i cannot get my childhood back, but I know that my dad isn't going to stop as this has happened 3 times before and mom doesn't want to leave him as she's not sure where to go after leaving him. This just makes me so angry and i really want to take a step about this.
123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I'm reaching out because I'm facing a tough situation in my search for health insurance in India. I've been rejected by HDFC, Navi, Care and even small start-ups (even, digital) due to a history of hyperthyroidism and a past STI (not HIV, fully cured). The primary reason for rejection is Hyperthyroid. \n\nI'm fully cured of hyperthyroidism, the STI is history, and I'm not on any medications. If you've had similar experiences or know insurers open to cases like mine, please comment or DM.\nThe rejections have been disheartening, and your insights could make a world of difference. \n\nI have checked with my doctor and he said it is un-believable as even heart patients get insurance these days and the risk of hyperthyroid leading to anything serious is close to NULL. I am open to public sector companies.\n\nThank you for reading.\n Wishing you all good health and positivity!
124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So I found this coin in my purse today, not sure where I got it from. Probably through some shopkeeper I assume. But I've never seen such a coin before, its usually 50 paise right. So was wondering if this coin has any value?
125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hello!\n\nThe Ministry of Information and Broadcasting (MIB) recently released the Broadcasting Services (Regulation) Bill, 2023. The short version is that it is alarming. The long version is that it raises severe apprehensions about censorship in the realm of "OTT" broadcasting services, independent news publishers, and content creators. The bill [overhauls](https://www.thehindu.com/opinion/lead/old-censorship-on-a-new-medium/article67576676.ece) the old censorship engine for the digital age. \n\nFor a longer version,[ join us today at **05 PM IST**](https://us06web.zoom.us/meeting/register/tZcqdO2trjoqGN2CpptQ_PnxZj36gKdm1Zem#/registration) with Pallavi Sondhi (Advisor, Ikigai Law), Smith Mehta (Researcher, Professor University of Groningen) and IFF\031s Associate Policy Counsel, Tejasi Panjiar, as they delve into the history of online content censorship, implications of including "OTT" broadcasting services under government regulation, threats to online free speech, and journalistic expression. \n\nHere\031s a quick reading list for you before the call. Come with questions and join us in asking MIB to please #LetUsChill.\n\n1. IFF\031s [First Read](https://internetfreedom.in/broadcast-services-bill-first-read/) of the Bill\n2. [*Old censorship on a new medium* ](https://www.thehindu.com/opinion/lead/old-censorship-on-a-new-medium/article67576676.ece)by Apar Gupta\n3. [*Regulating OTT: Draft Broadcasting Regulation Bill may be an attempt to control digital infrastructure*](https://indianexpress.com/article/opinion/columns/ease-of-control-9028225/) by Smith Mehta\n4. [*Here\031s How The Broadcasting Services Regulation Bill, 2023, Impacts Streaming Services*](https://www.medianama.com/2023/11/223-broadcasting-services-regulation-bill-2023-streaming-services/) by Kamya Pandey \n5. [*India\031s digital economy isn\031t broken. What is I&amp;B ministry fixing by bringing OTT under it?*](https://theprint.in/opinion/indias-digital-economy-isnt-broken-what-is-ib-ministry-fixing-by-bringing-ott-under-it/1855448/) by Varun Ramdas and Srishti Joshi\n\nIn case you are seeing this email post 5 PM today, check out and bookmark the live stream recordings on [Youtube](https://youtube.com/live/_OttnH7r-Xw?feature=share), [Twitter ](https://twitter.com/i/broadcasts/1YpKkwbpyqwKj)or [LinkedIn](https://www.linkedin.com/events/implicationsofthebroadcastingse7133788641494990848/theater/). This call is open to all! \n\nWe hope to see you there! 
126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My friend and I plan to start a business by pooling our funds together. If there are people who did the same before here, please share your insights and advice.
128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My dad started this restaurant in 2010 i am trying to keep this business running but it looks like I can't anymore. I have a decent job and I can't pay from my pocket for some mistakes these Zomato guys did and there no way to talk to someone who can explain me clear why i have to pay them 22k they only take complents using there app. I have to pay 30k to groceries and I dont think I can keep paying from my pocket.\n\nI am thinking of switching to swiggy completely let's see what happens.
129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \nHi everyone, hope all are doing good.\n\nI am a female in early twenties, having floaters(black thread like thing floating infront of the vision) in both my eyes due to a disease I had last year. Currently, I am cured but eye floaters are still there.\nAnyone over here who has dealt with the same, please tell me what can help me to get rid of it, apart from steriods.\n\n(I am not asking for serious medical help, I just want  you to share, if any specific food consumption, eye excerise, contact of doctor that helped you)\n\nThank you and take cared\017
131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi everyone\n\n&amp;#x200B;\n\nI lent my girlfriend 70 lakhs so she and her family could buy what they wanted on the condition that once they sell their plot of land she will pay me back the money. \n\nHowever now she is saying she will only be paying me 10 lakh and not the full amount due to an argument we had and are no longer togthere. How am i able to get this money back. \n\nI am also not in india i am currently in the UK .\n\n&amp;#x200B;\n\nThank you for your help 
133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Need some advice. Our co-op housing society is requesting 30k rs payment from each resident for building repairs, although our monthly maintenance already includes a dedicated amount for repairs. While some members have already paid up, this amount is a financial strain for my family. I'm wondering, if it's fair or there are any alternatives or if I'm obligated to pay it anyway. If anyone has information or knows who can help, please share. Thanks
134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hey guys!\n\nI'm an Indian student currently in the US, and I'll soon be traveling back home to India. As part of my journey, I'm planning to bring along a few items with me, and I need some advice regarding customs regulations.\n\nHere's what I'm planning to pack:\n\n* 4 pairs of shoes\n* 3 small purses\n* 2 watches\n\nMy plan is to remove all the tags and pack them in my check-in luggage. I'm not planning to sell these items; they're for personal use or gifts for family and friends.\n\nCan someone with experience in such matters advise if this will be okay with the Indian customs? Are there any specific rules or limits I should be aware of to avoid any issues at the airport?\n\nAny tips or suggestions would be greatly appreciated. Thank you in advance for your help!
135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My brother is studying in class 10 and he is given stupid projects. Very stupid. Things like make a doll whose hands can show the various curves that can be formed. (Apparently it teaches equations of curves like parabola, straight line etc.) Isn't this stupid?\nA class 10 student should focus on studies not sit and make dolls. Moreover the teachers have started assigning home work using Google classrooms so they don't give notes in class, instead just make the kids write them at home. So on an average my brother spends 4 to 5 hours just doing homework every day. After that he needs to study for tests. He squeezes in an hour of break and boom it's 1 am.\nHe feels burnt out at 15!!!\nAll these group projects and the open bias of teachers is making me question whether Indian education system in itself is crappy or it's just this school.\n\nP.S I'm typing this as my brother is drawing some other useless stuff for his school project.\n\nI'm thinking of changing his school if this is not the case in other places.
136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 r/MidNightWalker\n\nEver felt so anxious that you just want to walk. Yet you can't muster the strength to do it. Somehow you gather up energy to get out of your bed and put on your Shoes and Jacket, Put on some good music and walk until you feel slightly better than lying on your bed. \n\nThat would be nice, wouldn't it? Sure, it's not going to solve any of your problems and at times, you might not get any clarity. But still, walking would be nice, no? Let some of that anxiety out. Every bit helps, no?\n\nI made this sub Hoping people get an incentive to share their story. Help them take that first step. 20 people need not read your story even 2 may read it and try it out. \n\nWe judge ourselves way more than others do to us. \n\nYou don't need to share your story. Sometimes just reading others might help you. You can't solve others problems. You're not sharing hoping others can solve your problems either. \n\nIf you think you might take that walk sometime, maybe join the sub and document your walk.\n\nLet me know if you think this might help people and if you have any suggestions.
137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hello! I am researching a topic primarily regarding Indian citizens as an undergraduate in university.  Any responses would be greatly appreciated! Please fill out this short survey using the linked clips of speakers. :)\n\n[Survey Link](https://qualtricsxmc45mxmmzq.qualtrics.com/jfe/form/SV_6V6WKxhe10g9Gfk) \n\n[Link to Speaker 1 for Survey](https://youtube.com/clip/Ugkx_ZQiTY-WXoRdcNlPU5rKSnAPW4kocwit?si=7o5307C9mQOnFuc9)\n\n[Link to Speaker 2 for Survey](https://youtube.com/clip/UgkxnH9poafLWbT_NKkjJbZmV1iNn3lugRQO?si=lib4WYbWLygoauNo)
138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is the first time I\031m buying gifts for a to-be mother who is expecting a baby in a month. What are some good gifts that are not clothes? Can be for the baby, mother or father.\n\nIf it helps, I\031m currently in the US and can buy stuff to bring from here to India or buy in India. Ideally if buying in US, less volume would be ideal as I won\031t have a lot of extra bag volume. Budget under $500 or 40K INR (can be multiple gifts). Thank you!
139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i want to join indian politics to develop my nation.\n\ni tried joining one of the parties online and only suceeded with Aap so far but they dont have a kochi presence.\n\nwhat is your suggestion?\n\ncan i run for minister position like ministry of health easily?
140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hello!\n\nI\031m in Montreal and was recently at an Indian restaurant where [this music](https://voca.ro/1kXOieNQL74G) was playing. It didn\031t stop the whole time I was there, it was on loop and it was so incredibly hypnotic, the melody stayed with me for a while after I left. It sounded like it could have been a prayer of some kind, but I really don\031t know.\n\nThe lady who served me wasn\031t sure what it was. I tried to Shazam it, to no avail, so I recorded that 20 second sample onto my phone in the hope somebody here might be able to identify it? I\031d really appreciate any help!\n\nThanks
144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Collapsed Uttarakhand tunnel was built by Navayuga Engineering, an incorporated partner of Adani Enterprise.
147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I study in one of the top colleges but my branch is not circuital (I was the one who decided this). Nothing good has come out of this college except a few good friends, and I don't know if these people consider me as close I consider them. My time here has been full of traumatic experiences. I am in my final year and as soon as I came to the campus I have been getting harassed and stalked by a dude in same college. It's to the point I'm afraid of staying in the country unless it is in some gated community. I have repeatedly complained to authorities but that dude has gotten nothing more than a slap on the wrist. Going to police is scary and there won't be a favourable outcome coz they will ultimately leave it to the institute. Apart from this I have not been able to keep up with my studies. At first I was barely able to pass every subject but now I have started failing. I might get kicked out of the institute this semester. Maybe it's for the best. My interest in major has long waned. My branch even proves to be useless in finding jobs. The only solution I can see is ending it all. I have come so close to it several times but I don't want to waste my parents investment on me, neither do I want to traumatize my siblings. Whenever I get these dark thoughts I can't even go to anyone because I have no friends in my hostel. Again that is my own fault. I don't mince my words and the truth hurts. They always drop me coz of that. I don't know what to do anymore. This institute is too cold.
149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hello folks, I need your help finding a two-wheeler scooter for my mother who is short, not really matter if it is an EV or a petrol one  \nMy choices yet are Activa 6g, Activa 125, and for electric Ola S1 Pro  \nIf it helps, she already drives Activa 3G
151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hi, \nI wanted to know how to go around within the islands? And what would be the per day charges for taxi, auto or cycle (rent)?\nI would really like to explore around on cycle. Are there places where I could rent a cycle?
157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There was recently a post about how Indians are notorious for not caring about their surroundings- littering, spitting, spoiling and defiling public spaces, etc. It could be attributed to the "My work is done , I am least bothered about what others have to face after me" mindset of most Indians. I was thinking of how we can tackle this and immediately address this. Educating from childhood is a good solution, but it's going to take more than a generation's span to see it's results in our society.\n\nSo here's something I have been thinking for quicker changes in society. Forgive me for the length. Feel free to counter point and discuss.\n\nThe major weak-point plaguing India is our citizen's mentality. We are self-centered and display no respect or sense of responsibility towards our motherland or fellow citizens. One of the prime examples for this is how normalized and common it is for a person in our country to litter, spit on the ground, defile public spaces and ignore those who are actively doing such stuff. We feel discouraged to try to solve this because for one, we feel like it makes little-to-no difference, and two, it drains us way more than it benefits society. It also wouldn't matter how hard the government tries to clean and introduce state-of-the-art facilities, the public would still spoil them. Hence I feel like the government should introduce something along the lines of "*compulsory community service*". This can be implemented first in the major cities and slowly scaled throughout the country. Here's how this policy may work according to me:  \nEvery district could be divided by means of pincodes and an area given by a pincode can be further divided into segments if it is huge and densely populated. These divisions would then be categorized into 3 categories - 1, 2 and 3, based on frequent inspections and assessments.  \n**Category 1** areas are those with ideal cleanliness, facilities, living conditions. These areas require minimal community-driven maintenance.  \n**Category 2** areas are those with untidy conditions, visible litter and other unpleasant stuff. These areas require frequent community-driven maintenance.  \n**Category 3** areas are those that are the worst in the country. These areas are in dire need of very frequent community-driven maintenance and improvement.\n\nA person belonging to any given area would be legally obligated to participate in the community-driven service for that area (could be in the form of one person from each home). There should be minimal exceptions to this policy. Category-1 areas will have occasional sessions. Category-2 areas will have periodic sessions until it crosses over to Category-1. Category-3 areas will have very frequent sessions until it crosses over to Category-2 and then Category-1. There are several benefits from this policy according to me:\n\n* This would instill a sense of responsibility and fear in the people, whether they are fond of this policy or not initially. They will know that they cannot litter or damage public spaces as the responsibility of fixing that will fall back upon them.\n* People will be more protective and responsible for their own areas. The same folks who were ignorant to others littering and behaving irresponsibly in their areas will now be incentivized to confront them and make them fix whatever they did, because they now know that if their area gets littered, they will have to attend more of these sessions and work more.\n* Within a few weeks, we would be able to observe a great deal of change in our environment, due to the sheer amount of people working towards this cause.\n* Escaping this duty or hardly contributing in these sessions would be counter-productive. As the only way to truly escape from this duty is to push your area to category-1 as fast possible. So you are incentivized to work hard during your duty or somehow clean up your area quickly.\n* Will strengthen the sense of community and relations. Will help dismantle any hierarchies present in the community, as everyone will be doing the same duty, irrespective of their status or wealth.\n\nThe way the cleaning would happen is not just by sweeping or picking up litter, but also by fixing damaged spaces, sanitizing unsanitary spaces, etc. Of course, there are some challenges and cons with this policy. Here are a few that I can think of:\n\n* People living in Category-3 areas will be having the biggest burden. These generally tend to be those who are in poorer neighborhoods, who generally tend to be poor. But the positive thing is that they are doing this for their own community, hence would be reaping the benefits of this first-hand, quickly. It would give them a sense of accomplishment and independence, knowing that they made their own space cleaner and better.\n* This will cause inconvenience and discomfort for many folks. But once people see the results, this minor inconvenience in the beginning will be worth it. Regardless, this policy is aimed at upscaling all areas in India to category-1. Once there, the community duty will be minimal.\n\nThe fine details on how community duty works and is implemented can be worked on further. But I feel like this kind of policy is the best to bring about quick changes and impact the Indian social mentality. Also greatly increase the quality of life. What do you guys think?
158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi People, \n\nThis might sound funny but this is a genuine question. If you see anywhere in India the maximum number of people eating Gol Gappas or Chaat are women. ( I am not generalizing it but it is what I observe ). But I have hardly seen any female shop owner of these chat shops or even cart. I have seen women selling momos, I have seen females selling other stuff on the same street but not Chaat and Gol Gappa?\n\nIs there some kind of reason for that or why is it that the population which is your biggest customer does not own that many shops of this product? 
159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I need to make a EWS certificate at the earliest. I have filled the form and asked my lawyer for a Notary mentioning my details and if I own certain acres of property ,etc. so that I can submit it If needed. Where do I need to go to and to Whom? \nIs it the tahsildar\031s office? \nI m based in Mumbai, Maharashtra. \nAnd how long will it take to get this made If i can manage to insist them into doing it asap.\nMy father doesn\031t handle a lot of this so It\031s going to be only me. Any and every help is appreciated. \nThank you!
161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Please avoid comments like \034it\031s not possible,\035 \034give up,\035 \034don\031t try,\035 \034we are beyond fix,\035 \034kuch nahi ho sakta,\035 \034be realistic,\035 \034just go live abroad,\035 or \034another India bad post,\035 etc.\n\nWhere Are We Headed, What Are We Doing About It, and What Can We Do About It?\n\nPursuant to my earlier reddit post, [\034CMV: I Don\031t think India will be a developed nation by 2047 (100 years since Independence),\035](https://np.reddit.com/r/india/s/1HdzUkCz7J)\n\nMuch like Newton\031s first law, you could rephrase it as: \034A government (performance,attitude,behaviour,policies) will remain unchanged unless citizens actively exert pressure and hold it accountable for change.\035\n\nIn developed countries or nations with better democracies, living conditions, and rule of law, citizens hold their governments accountable more effectively than we do.\n\nGovernments/Parties in India (any and all,whether State or Central), often take their citizens and voters for granted, and we, in turn, let them off the hook.\n\nWhat about Manipur?\nWhat about Aadhar Data breach?\nWhat about Adani Scam allegations?\nWhat about Morbi bridge collapse?\nWhat about ruining our nation\031s image for the way minorities are demonised ?\nWhat about Canada\031s allegations?\nWhat about recent allegations regarding Indian govt involvement in assassination of Sikh US Citizen?\nWhat about Delhi\031s Pollution? Every year we just rant on social media and make noise and move on.\nWhat about weakening independent agencies like CBI, IT, ED, CEC?\nWhat about blatant religious extremism?\nWhat about sold out media organisations?\nWhat about corruption?\nWhat about extremely slow/biased judiciary?\n\nAnd these issues are just tip of the iceberg&\n \n**IT IS ON US, NOBODY ELSE IF WE WANT A BETTER FUTURE FOR OURSELVES/KIDS AND FUTURE GENERATIONS**\n\nThere must be a way, and I believe that collectively, we can figure it out. If we pool our collective efforts, perhaps we can achieve something, if not everything.\n\nLets be honest , a large section of our population can get brainwashed (owing to different reasons like govt\031s propaganda,educated illiterates, uneducated illiterates,sold out godi media,etc) and can we blame them for that? It\031s on us to show them the truth and light if we want our country to have a better future tomorrow for ourselves and our kids and our people. \n\nI firmly believe that Reddit india can in its collective capacity, wisdom and resources do something about this. \nAt least we can give it a try.\n\nSo what can we do , even if small and where do we start?
162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Approach - 1\n\nDesign-Build - Appoint General Contractor / Builder  who takes care of bringing other consultants like architect etc. then provide budget-timeline and overseas entire project till completion. \n\nPros : Single point of Contact Fastest \n\nCons : Less control over most of things once project is signed off. \n\n&amp;#x200B;\n\nApproach - 2\n\nDesign-Bid-Build - Appoint architect; get Designs finalized then Appoint General Contractor / Builder  who takes care of bringing other consultants provide budget-timeline and overseas entire project till completion. \n\nPros : Flexibility in Designs. Then Single point of Contact  Moderately Time Consuming\n\nCons : Collaboration or Communication could delay project. Adds cost and time\n\n&amp;#x200B;\n\nApproach - 3\n\nOwner-Builder  - You take care of appointing Contractor to Consultants; follow Budget-Progress closely\n\nPros : You have much more control on entire project.\n\nCons : Very costly, time consuming and potential to derail project if communication, alignment of all parties is not managed properly
163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hello! <î<ñ<î<ó\n\nI am Jew that loves india and its people and i am interested in the culture. Sorry for my ignorance, but I always assumed that sikhs and Hindus were the same religion just a few different beliefs , like for example christians and catholics. I now educated myself and I know they are two completely separate Indian religions. I have been reading on the news that there is a little bit of tension between the two religions and I was surprised to see this. My question is, in India are sikhs and hindus close and do celebrations together or are they to seperate communites? \n\nAgain, sorry for my ignorance I tried to research this but was not getting concrete answers. \n\nThank you and GD bless India and its beautiful people.
164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n\nHello fellow travelers and Himalayan enthusiasts! D\017<Ô\017\n\nI'm planning a winter getaway to Himachal Pradesh to experience the magic of snow-covered landscapes and serene beauty. I'd love to hear from those who have explored this winter wonderland before.\n\n**When is the Best Time?** I'm particularly curious about the ideal month for witnessing snowfall and enjoying the pristine beauty of Himachal Pradesh. Whether it's the tranquility of a snowy landscape or the thrill of winter sports, I'm open to any suggestions!\n\n**Hidden Gems Away from the Crowds** While I'm eager to embrace the winter charm, I also prefer places that are not overly crowded or hectic. Any recommendations for tranquil spots that offer a perfect blend of solitude and stunning views? Whether it's a cozy village tucked away in the mountains or a lesser-known snow-covered trail, I'm all ears.\n\nYour insights and personal experiences will be immensely helpful in shaping my winter escape. Looking forward to your valuable suggestions and travel anecdotes! <(\017( #TravelAdvice #WinterEscape #HimachalPradeshMagic
165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hello everybody\n\nWe are planning to be in India for Christmas and New year but we absolutly don't know where.\nHave you got any suggestions about a place to be for this celebration ??\n\nThanks a lot
166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I have a laptop which I am interested in selling but I hear about OLX scams everyday and would like to know in advance what steps to take inorder to avoid getting scammed.\n\nAlso -1. For ex- if the guy wants to pay in cash, should I ask for a id proof? \n\nWhat else should I do ?
168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Honestly, the title.\n\nI come from a Punjabi Sikh/Sufi family and I wanted to know what North east men thought about us?\n\nFrom what I seen, North east men are quite respectful compared to the rest, since I am guessing their culture is more matriarchal? Correct me if I am wrong.\n\nBut yeah, yk, they kinda been my type and I wanted to know would they be willing to yk be with someone whos like me?
174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I watched a wedding reel where friends and family were given fortune cookies >`, and it had messages about the couple, mostly featuring an Indian couple. If you come across that reel, please share. I tried searching for about 2 days but had no luck. I want to share that idea with someone. Please do share.
175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A very common post but hear me out.\n\n35M, wife is 34. Both IT professionals. A 2 year old son and another kid on the way.\nLived in the US for 10 years. Faced visa issues and moved to Canada. Not a citizen yet but will be soon. Have gathered enough corpus to retire in either Canada or India. \n\nWhy I want to move to India?\n\n1 - Always feel like a secondary citizen.\n\n2 - A very average social life. Though we have a lot of friends, we mostly meet on weekends over dinner. More frequently in summers and a lot less in winters. Life feels empty and monotonous, specially in winters.\n\n3 - It will be a lot more difficult for the kids to adjust to the life in India once they grow up.\n\n4 - I feel that kids education is better in India as compared to Canada. (Dont want to discuss this)\n\n5 - Family. Both sets of parents still alive and we want the kids to live with them and experience life with grandparents like we did. Also we both have siblings and huge extended families in India.\n\n\nNotice that though family is important, it is not the biggest factor thats pushing us to move. Its our and the kids future.\n\n\n\nDoubts about moving to India.\n\n\n\n1 - Biggest concern is what if we are not able to adjust there. I know quiet a few people who returned to India but regret that decision now. Thinking of moving to Pune as I have spent 7 yrs there and loved it then. Not sure how the life is now.\n\n2 - It wont be easy to make new friends and start a social circle given our age. Also we dont plan on working which makes it even harder.\n\n3 - Very much used to the pollution free, corruption free lifestyle and no nosy relatives and neighbors\n\n\n\nAny advice will be helpful.
177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi everyone,\n\nI'm planning a trip to Manali in the last week of December and I'd love to get some insights from this community. \n\nWhat should I expect weather-wise and activity-wise during this time of the year? Are there any specific challenges or considerations for traveling in Manali in late December?\n\nAlso, I'm looking for recommendations on must-visit places. What are some of the top sights and experiences that shouldn't be missed? \n\nI'm traveling with my partner \023 would you recommend renting a bike or a car for getting around? Any advice on which is more convenient or enjoyable given the weather and terrain during this season would be greatly appreciated.\n\nThanks in advance for your help and suggestions!
178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Please read the entire story =O\n\nThings you should know before reading the story :\n\nMy nani never cared for /loved my mom since childhood and only loved my mama.. she would make snacks only for mama and never offer it to mom.. she would only wash my mama's clothes and mom had to wash hers on her own.. \n\nHere's the story:\n\n\nIt's around 6 years back where my nani had a paralysis attack. She used to live alone in her home in India and my mama lives in Canada. One day my mom got a call from nani that she's fallen down and mom rushed to help her.. she bought her Home, Hospitalised her and took care of her post hospitalisation for 5-6 months. Out of happiness and for the efforts my mom put, My nani gave a small gold necklace to my mom (she had never given her anything before this). \n\nMy nani has been living in Canada ever since she left India after her recovery and she's in extremely bad terms with her daughter in law and even her son (my mama).. my mama sold my nani's apartment by taking my mom's signature didn't give any share to my mom and now my mama would be mostly verbally abusive towards my nani like " tu nikal yaha se aur India ja" - translation "leave my home and get out of here".... after which nani has been calling mom and asked her that if she could stay with her(this has been going since past 1 month).. Since my apartment is up for redevelopment she's staying with me at my inlaws which she mentioned to nani.. my nani called another aunty with whom she's gonna stay for few days (this aunty is not a very close relative) and asked her to take the gold necklace from mom.. (which she had gifted her) after which that aunty has been calling me repeatedly for the necklace (and getting on my nerves).. to which I told her that let nani come we'll hand it over to her.. \n\nMy nani was leaving for India yesterday.. Before leaving for India  nani was talking to me and mom so sweetly and laughingly etc.. didn't mention the necklace even once.. on the other hand that aunty had called me yesterday asking for the necklace.. i told her it's between nani and mom so they'll settle it.. Today nani has arrived here in India.. called mom.. and immediately started yelling for the necklace in a tone which I have never seen her talk in!!!! Very clearly this aunty has told her something and manipulated her that she was talking in an ill mannered tone with my mom.. I snatched the phone from mom and told nani to handover the call to aunty and asked that aunth "she was talking so nicely yesterday what happened suddenly?" to which that aunty started yelling at me!  "Mene nahi chadaya"  (translation  - I didn't tell her anything) and a lot more...  I Was so mad that all this while the accumulated anger bursted and I told her "you too have a daughter and you'll not like it if some outsider interferes in your personal matter"  to which she told me "come here at my place I'll hit you badly".  \n\nI know this aunty very well she can stoop very low to any extent for money.. she has made a lot of profits from us..looted us.. I feel so heartbroken.. i have written a big story here but still not fully expressed my feelings.. what do I do?
179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hello I am an Indian girl where almost every female has pierced earlobes, I have my sister\031s wedding and I need to know from where I can get clip on earrings from? Also I wanted to know how many of you have no piercing and what alternative do you use?
181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               **Can someone who speaks Hindi translate this extract of  "I am India" from Qaidi Band:**\n\nGol Gol Gol Gol Gol\n\nGol Gol Gol Gol Gol\n\n&amp;#x200B;\n\nGol Gol Gappe Ka Paani Hoon Main\n\nUs Paani Ki Teekhi Tu Khatash India\n\nThande Thande Matke Ki Gulfi Hoon Main\n\nUs Gulfi Ki Sondhi Tu Meethash India\n\n&amp;#x200B;\n\nMain Chaat Tu Chatkaara\n\nMain Sity Tu Lashkara\n\nMain Daal Bhaat Khichadi\n\nHu Swaad Ka Bhandara\n\n&amp;#x200B;\n\nMain Menu Indian Tu Ghatak Test India\n\nTujh Mein Main Hoon\n\nMujh Mein Tu Hai O Re India\n\nTujh Mein Main Hoon\n\n&amp;#x200B;\n\nMujh Mein Tu Hai O Re India\n\nHoli Chritmas Diwali Main\n\nEidi Pongal Baisakhi Main\n\nTu Hai Rango Ka Milan\n\n&amp;#x200B;\n\nTu Roshani Ka Tashan\n\nTu Roshani Ka Tashan\n\nHaan Tashan Haan Tashan Haan Tashan\n\nTashan Tashan Tashan\n\n&amp;#x200B;\n\nMain Kathak Bhangra Garba\n\nTu Dance Ka Morappa\n\nGurubaani Main Qawwaali\n\nTu Geeto Ki Pitaari\n\n&amp;#x200B;\n\nIndian Tu Mast Tune India\n\nTujh Mein Main Hoon\n\nMujh Mein Tu Hai O Re India
182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That is a bit misleading however, awaiting gems like "modiji transferred this money from farmers account" as show in Pathan or "that is my money that SBI gave to Adani"
186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am very close to my grandparents, they are in their 80's. They are independent but I can see that they are getting fragile. They are in India.  I have the opportunity to spend few months with them, I want to plan it in such a way that, it increases their happiness, health and kind of make sure that I am able to reduce my regrets or pain when the unavoidable happens. Should I help them redo there room? Travel a bit with them? Take photos, ask them about their past..... I want them to have hope and feel good so that they have motivation to live long, I believe one cannot leave if they still have something to look forward to in their life and I want them to have that.... \n\nAll their children live close by and they look after my 5 year old niece after school. They do have a busy social life. But their regular life can be bit boring but it suits them. My grandmother likes to dress up and stuff. My grandfather likes to try different food and stuff but he often says he doesn't have an appetite. He is kind of disappointed that when he had health, they were poor and often didn't get to eat things they liked and now he doesn't have the appetite. I want to collect and learn alot about their childhood and memories, but I am scared to ask them cause they would sense that I am doing this cause of the obvious reason and I feel that might make them depressed.
187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            &amp;#x200B;\n\nhttps://reddit.com/link/186tf2a/video/qw74nnpdcb3c1/player\n\nhttps://preview.redd.it/8r2l9qh8bb3c1.png?width=666&amp;format=png&amp;auto=webp&amp;s=7b25300b80b86cac3ab5eef085dedfffe957db86\n\nGot this ad on facebook. It's clear that this was AI generated. Meta doesn't seem to care about checking the legitimacy of ads whether they are real or not or a scam. \n\nMeanwhile our Indian privacy and data related laws give freedom to all these companies to sell our data for pennies without any fear. It was already getting too much with spammy calls and messages and now this ai generated fake ads. Meta literally has no moderation on what ads are being run on their platform. Which results in hundreds of thousands of people being scammed everyday. And since this scam takes somewhere between 500 - 5000 Rs. from a typical user they do not come into mainstream media as they are seen as petty crimes. I've seen multiple e-commerce ads where they sell too good to be true deals (example: bicycle for 800rs) with only prepaid payment methods and no cash on delivery and then scam people. This as has 3.5k likes and it's like no one cares. I think it's high time we take control of our data and take strict actions against people running these type of scam ads. Meta is mainly responsible for this as they should be the one who moderates content for ads. isn't there anything we can do to raise our voice and stop these things?
188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If you have or know someone who has a home-bakery business in India, how do you deliver the cakes etc from your place to your customers place? Which delivery service do you use? Or is there other ways you use? I only know of Swiggy Genie and the delivery rates are too costly for a home business!\n\nThanks in advance!
190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hey Reddit peeps,\n\nI'm a 2nd-year CSE student, and let me spill the beans \023 my first year was a total bust. =D Didn't bother much with coding, but now I'm waking up and smelling the Java (or whatever).\n\nI'm on the lookout for an internship gig. I'm not a coding whiz (yet), but I'm ready to dive in and get my hands dirty.\n\nNot after big bucks. I just want to get some real-world action and figure out what this coding fuss is all about. If you know of anything, hit me up in the DMs.   \n \n\nShoot me a DM if you've got the deets. Cheers! 
191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Kind of a rant but I have stayed in multiple hostels and PGs and had friends stay over at my house and use my washroom and every single one of them have disgusting habit of either not flushing the toilet or leaving shit stains everywhere on the toilet.\n\nFor context while growing up, we had maids to clean our house and my parents always taught me it\031s rude and disrespectful to leave a dirty washroom for them to clean. So I always make sure there isn\031t any shit stuck to the toilet bowl, I keep separate brush and cleaning equipment nearby and clean up after my mess if any.\n\nBut I find it so annoying that no matter where I go, I can\031t avoid seeing shit left behind by other guys.\n\nI\031m college I would rush to use the toilet right after the janitor cleaned it, so that I can get access to cleaner toilets. If by mistake you didn\031t use it, you are fucked. The western toilets would all be filled with poop. So I would have to use the Indian ones, although still shitty, already you aren\031t touching anything.\n\nSame in PGs and when staying at any hotels. If I\031m not the first one to use it, I find myself using dirty bowls.\n\nWhen guys come to my house, I have to always clean it up first and then use it.\n\nAre these people not disgusted by leaving shitty bowls behind? Do they not care? Are the women like this too? Or is it just the men?\n\nAm I setting unfair expectations?
192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hi everyone, \nI'm a 10th grader and want some stream advice. I want to do forensics after 12th grade and my desired profession would be a CSI/Forensics Expert/Forensic Scientist. For ANY of these particular careers, I wanted to know if PCMB is a requirement? I know it would benefit me but I don't know if it's a risk worth taking. For context, while I am not bad at math, it's definetely not a strong subject. I mostly struggle to score 70+(out of 80) but can score 65+ easily. PCB is not a problem, but I am afraid of maths slightly and scared about the burden it may cause. But if it would help me ALOT then I would probably take it. So please help me make this decision. \nAlso I'm aware of like 2 paths to take for Forensics, \n- MBBS and then MD in forensics \nOr \n- Bsc and Msc in Forensics. \n\nWhich would of these would be more suitable/ideal for my desired profession? (CSI/Forensics Expert) \n\nPlease help me out. Thankyou! &lt;3
193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bengaluru and Hyderabad are home to largest software development centre in world for:\n\nGoogle\nMicrosoft\nAmazon\nApple\nNutanix\nGoldman Sachs\nFlipkart\nWalmart\nSalesforce\nCisco\n\nAnd many many more...\n\nWill these large American giants ever open such development centres in NCR( Gurgaon and Noida)? Now that we have Jewar airport and lot of new infrastructure in place . What do you think?
194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Travel agency not refunding money.\n\nRecently my dad booked a flight from [sastasafar.com](https://sastasafar.com) (already fishy name). It was an Indigo flight and due to change in flight i got a full refund from indigo itself due to their Plan B policy. Then i contacted travel agency to ask for my refund.  \n\n\nA few days later travel agency told me that they are credited with 2k INR only and indigo deducted some amount (Total amount to be refunded was 10k INR). I then called Indigo and travel agency several times but getting the same response everytime.   \n\n\nIndigo says they refunded full amount but cannot see the exact amount because of travel agency putting a hide fare on this booking and travel agency says get a proof of full refund amount so we can contact Indigo, Also when indigo's superior customer staff contacted me they said they can talk to travel agency over conference, but travel agency immediately cut the call instead of talking.   \n\n\nHow can i get my full refund? Is it worth it to get into legal trouble for this amount?
196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hello everyone.  I\031m a 24M from NYC, and recently got laid off from my job.  I\031ve been kind of burned out for a while, and I need to change things up before jumping back into it.\n\nI\031d really like to spend the next 6 months exploring a new culture and language, and I\031ve been thinking a lot about india for a few years now.\n\nI am a pretty social person and don\031t have issues interacting with people or going out to events, and I\031ve traveled extensively before. \n\nBut which cities have young people who are most receptive to meeting new people?\n\nI\031ve heard Bangalore since a lot move there for work and have to push themselves to be more open and build out their social network.  But people also work a lot of hours.\n\nAlso Mumbai because it\031s a big international city so a foreigner would more or less blend in.  But like NYC, people are very busy with their hustle to make new connections.\n\nI will do anything, but my hobbies here are sports (ice hockey, BJJ, soccer, baseball, and salsa dancing), raves/EDM, cooking, language learning, indie film screenings, photography, programming (my profession), and whatever else.\n\nI\031m open to any recommendations.
197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We were international students ourselves and we know how hard it was and speak to someone who actually understand you.\n\nThis is why we made Koko, a mobile application and a safe place for international students where you can match with someone who gets you and speak with them in a safe and trusted environment.\n\nInteresting conversation? Mental health support? Language exchange? You get them here all.\n\nWe just launched and we are currently only accepting limited number of people to maintain the high quality of the product.\n\nBesides all this, the early users will get 15 days free trial and access all the premium service at a discounted price.\n\nJust comment and we will get you onboard as soon as possible!
198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hmm... It's like looking at a tsunami coming at you and you are just like.. I will run when it gets closer..\nBTW this youtube chanel is of Meghnad. Can confirm he has good knowledge and not some random guy who speaks jibberish.
199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         **Hello Reddit Community**,\n\nI'm facing a challenging situation with Jio's installation services and am seeking advice or insights from anyone who might have had a similar experience.  \n\n\n**Background:**\n\nOn October 14, 2023, I initiated a JioFiber broadband connection by paying a ¹100 booking fee online. However, on November 17, a Jio representative came for the installation and unexpectedly set up an order for JioAirFiber, which I didn't request. He collected ¹9,500 for this service and assured me that the installation would be done within two hours, a commitment I have on CCTV.\n\n \n\n**Issue:**\n\nIt\031s been well over the promised timeframe, and the installation hasn't happened. My follow-up attempts have been met with unhelpful responses or no action. The customer service team's only solution was to either cancel with a minimal refund or to wait indefinitely, with no guarantee of service.  \n\n\n**Current Status:**\n\nNow, I'm left with no installation, out of pocket, and no clear direction on how to resolve this. I'm thinking about sharing this issue on social media and possibly seeking legal recourse.  \n\n\n**Seeking Advice:**\n\nHas anyone here had a similar experience with Jio or any other provider? How did you manage to get it resolved? I\031d appreciate any advice on how to navigate this situation or escalate it effectively. Feeling quite lost and unsure about my next steps.\n\nThank you for any help or guidance you can provide!  \n\\[Order ID: NO0000UBO7RH\\]
202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hello my fellow Indians and animal lovers\n\nPlease consider donating to my local NGO the pawzz. Pawzz helps the local injured stray dogs and cats in need by providing them food, vaccines and shelter to them as well as adopt the ones in severe condition.\n\nEven your 10rs will be helpful so please consider donating to the pawzz.\n\nGpay no./Paytm/phonepay no. 9971793456 Also please dm me the Screen shot if possible.
203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So, I got to know recently that this beauty is being passed down in our family from generations......
204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A sabjiwala gave me this instead of a 5Rs coin. He didn't know this was an Australian dollar. All Australian vpins have 1984 markings I guess.
207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Welcome to r/India's fortnightly Ask India Thread. \n\nIf you have any queries about life in India (or life as Indians), this is the thread for you. \n\nPlease keep in mind the following rules:\n\n* Top level comments are reserved for queries.\n* No political posts.\n* Relationship queries belong in /r/RelationshipIndia.\n* Please try to search the internet before asking for help. Sometimes the answer is just an internet search away. :) \n\n[Older Threads](https://www.reddit.com/r/india/search?q=%22fortnightly+Ask+India+Thread%22+flair%3AScheduled&amp;restrict_sr=on&amp;include_over_18=on&amp;sort=new&amp;t=all)
208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Welcome to /r/India's fortnightly mental health support thread. \n\nIf you are struggling and are looking for support, please use this thread to discuss your issues with other members of /r/India. \n\nPlease keep in point the following rules:\n\n* Be kind. Harsh language and rudeness will not be tolerated in these threads. The aim is to support and help, not demotivate and abuse. \n* Top level comments are reserved for those seeking advice. \n\n[Older Threads](https://www.reddit.com/r/india/search/?q=%22fortnightly+Mental+Health+Support%22+flair%3AScheduled&amp;include_over_18=on&amp;restrict_sr=on&amp;t=all&amp;sort=new)
209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hi, my father died recently a month ago and he had 2 accounts. My mom is nominee to both accounts and,\n me and mother used the ATM couple of times for funeral and other things.\n\nMe and my mother will be going to bank tomorrow to close the account with death certificate. I read to Internet that it is illegal to use the account after death. Is it true.? How long will bank takes to close the account and transfer the money to my mom account? Can my mom transfer funds to her account because we left with little funds.\n\nThanks
211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I've (39M) lived in the USA for 15 years now,( I'm still a guest worker there but have firm roots sadly - school-going kids , home, etc) I hadn't been to India in 6 years, and have been excited this past year ! Everyone i met told me about how wonderful it is . I am also toying around with the idea of retirement in India in a couple of years. played swades songs on a loop for about two weeks before my travel ( I've made my fortune in a foreign country and only my kids keep me from moving back) .  After about 3 weeks here though I have pretty mixed thoughts.\n\nOTP OTP OTP everywhere !!!  \n\n1. The heat ! it is so HOT ! , i don't recall India being so hot in December ever growing up!\n2. The skyscrapers in Mumbai! just wow, Prabhadevi looks like Singapore!\n3. The Food scene is amazing , my taste of chilli chicken @ Toit showed what i was missing !\n4. Urban Indians seem more westernized than americans! \n5. The airport customs gives me PTSD everytime and doesn't look like anything has changed in 15 years. I still see the confiscated bags, the same bribe-seeking officers/constable\n6. The sheer number of 'velle' young men on the streets!\n7. Banks ! - Been to 3 different banks .The same bank that i considered top of the line growing up seem lacking now . either my expectation has gone up or the general standard has gone down .The paperwork required doesnt seem to have gone down and bureaucracy seem painfully slow . Aadhar seems to be something everyone is comfortable with\n8. the pub scene is amazing , although the crowd seemed young considering I'm nearing middle age .\n9. the pub scene is amazing, although the crowd seemed young considering I'm nearing middle age. although digitization is generally good. the process seems to be updated every few years for no good reason \n10. dollar to rupee ratio :) was 39 when I left, its 83 now.  but still amazed at the inflation.  everything seems to cost in multiples of 100\n11. There is a huge divide between educated urban India and tier 2 rural India .  \n12. traffic is bad but i expected it , The permanent haze is what i did not expect. i wonder if Indians (Mumbaikars) have ever seen a clear blue sky .\n13. The eyes staring at my wife everytime we went out ( in afull clothed chudidar/ suit no less) . it was unnerving .\n14. even street vendors have paytm!\n15. dollar to rupee ratio :) was 39 when I left , its 83 now.  but still amazed at the inflation.  everything seems to cost in multiples of 100 everywhere i went ~~except for~~ even at upper-class clubs/pubs.\n16. Seemer cleaner although the general feeling of dust all around . its likely due to the development going on. There are no small buildings anymore!\n17. Indian TV seems filled with propaganda ( Not that american news is any better , I never realized it growing up ) . The nationalism seems to ooze out of people here .\n18. life seems comfortable for people with money but seems generally worse for poorer people . I don't really know if it is true , it just feels like lit \n19. need to reiterate - The amazing food!\n\nSadly I got the same feeling that you get when you meet a childhood best friend you separated from long ago and realize that your interests have diverged :(. India with all its glitz seems like a very tempting place but I realized I am not at ease here.  I feel like I am at a travel destination even at home!  Home and friends await at the second home I've made :(\n\n&amp;#x200B;\n\n  \n
213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I am a 21M college student. I wanted to know how much money I should earn to retire my parents and myself (3 people) to live a luxurious(Eat what we want and buy few premium goods without thinking a lot) lifestyle with lots of travelling. We live in a T1 city and would not like to move.
216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How are central universities determined so every state is supposed to have at least one central university\n\nQ1 like Delhi University manipur university and nagaland university are central university  but Mumbai University is not central university \n\nQ2 why did Punjab has to build a central university in 2009 when it already had Punjabi University and other good universities why weren't they not given central university status\n\nQ3 Do Central University get better funding or is it simply better to divide different fields to different universities like many states have now their own Universities exclusively for medical so although west Bengal medical colleges have their own University students of nagaland medical college graduate from a central university (as their college is affiliated to nagaland university which is a central university) \n\nI don't know if these questions are weird or is there some different subreddit for such questions but I was really curious about this concept of central Universities and specific universities\n\nThanks for reading
217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I'm reaching out here today to share a frustrating and concerning experience I've had with Livpure, and I'm hoping to get some advice and support from this amazing community.\n\nI recently decided to try out Livpure's Smart Water Purifier service for a one-month trial. Long story short, it has turned into an absolute nightmare. I paid a service charge of INR 649 and a hefty deposit of INR 4000, only to face delays in delivery, installation headaches, and a product that didn't live up to its promises.\n\nNot only did the water taste not improve as advertised, but I also experienced health issues. Trying to get these issues addressed has been a never-ending battle. Complaints were met with delayed responses, technician visits that took over a week, and no real solutions.\n\nFrustrated with the poor service, I decided to cancel my subscription on November 5th. That's when things took a turn for the worse. Livpure assured me that they would pick up the product in a few days, but 21 days later, they're nowhere to be seen. To add insult to injury, Livpure dropped the bomb that there's a **three-month lock-in period, never disclosed during the signup, preventing me from getting my full deposit back.** \n\nI believe Livpure is engaged in deceptive practices, and I want to spread awareness about this potential scam. Has anyone else faced a similar situation with Livpure? Any advice on how to escalate this or get my money back?\n\nYour support and advice would mean the world to me and might help others avoid falling victim to Livpure's deceptive tactics.  \n\n\nThank you.
218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * I am quite frustrated with my current bank hdfc - terrible app \n* I will be depositing money from abroad to use in India\n* looking for app experience wherein I can get a digital card and physical.\n\nI use IOS so it would need to be on the international app store.
219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why is cyber cell not cracking down? Wouldn't this effect the image of the country. \n\nIt is a sad state of affairs where 80% of the junk calls and 100% of fraud calls originate in India. This has grown by leaps and bounds in last 5-6 years.\n\nI know it's hard to make a living in India but this will ruin the image of India to the outside world and also would impact tourism industry. \n\nIt takes a long time build an image and take very little to ruin it.\n\nThere is a company called fairporto.com they are the latest fraud that I encountered.
220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hi all! Today's my mom's 46th birthday. I want to celebrate at home by getting food from Zomato. I'm only getting 150 rs off discount by default. I'm broke and unemployed as of now( student ) . So does anyone have any big discount coupons? I would really appreciate it. Any gift card or something would work. Thanks !!\n\nEdit: No longer needed . Thanks for reading :)
221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I have colleagues from Ludhiana and live in AUS and I am heading there in March to ride the highest road in the world on a motorcycle. I\031ve seen tours for $3k AUD to ride from Delhi to Le Ladakh, my work friends laughed and said for that price you can buy a bike and do it yourself and stay at nice places. \n\nIs this accurate? And are there many places to stay along the way? I want to experience the culture along the way and don\031t care where I stay as long as it\031s safe. \n\nGenerally speaking. Are tourists safe along this route? I\031m the typical white guy who doesn\031t speak the language. My plan is to fly in, spend a week getting my \034white boy stomach\035 (as my work friends call it =\002) then spend 2 weeks riding up and back, taking my time and experiencing everything I can.
223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I comprehend the prevailing sentiment, acknowledging the fervor for K-pop and an individual's affection towards their bias or idol. However, a critical examination ensues.\n\nWhile many express an affinity for Korean culture, I find a parallel in my admiration for Japanese culture after six years of avid anime consumption. Yet, the intricate facets of any culture often elude understanding until directly experienced.\n\nOne must ponder the trajectory of this love\024does it reciprocate, and what if it becomes the focal point of one's life? The query regarding the idol's reciprocation may seem simplistic, but it underscores the potential pitfalls of fixation.\n\nDevoting one's life exclusively to K-pop or Korean culture raises pertinent questions. What are the implications, and does this singular focus contribute to personal growth and fulfillment? Moreover, is Korea a safe haven for individuals from diverse backgrounds, such as Indians?\n\nThe concern extends beyond physical safety; it delves into the psychological realm. Given the aesthetic disparities between Koreans and Indians, there's a potential for self-esteem issues. The question of whether individuals may feel compelled to alter themselves to align with perceived norms arises, raising concerns about the impact on mental well-being.\n\nThis contemplation isn't aimed solely at the average fan, but rather at the subset characterized as toxic or naive. The potential for younger enthusiasts, aged 11-12, to inadvertently shape their lives around K-pop culture is disconcerting.\n\nIn expressing these thoughts, I extend empathy towards those who may face challenges arising from an unwavering devotion to K-pop. The nuanced discussion invites consideration of cultural exchange, self-identity, and the importance of fostering a balanced worldview.
224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is scary to think about paternity fraud but  what a common person can do if he find out that he isn't biological father of his child. How he can get justice in this country?
225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I tried to recreate my own photo from 3 months ago.
227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I'm about to travel to India for the first time (I'm so excited) and I have a deadly allergy to peanuts. I'm not allergic to other nuts, but if they have touched peanuts then I have a high chance of dying, so I will probably avoid them all regardless.\n\nI was hoping for some advice on how to properly convey this to restaurants (I won't be eating street food to be safe) but also what foods I should avoid that will definitely have peanuts in them and what to look out for. \n\nThanks so much in advance!
228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I have previously made many posts about my mental health and how it has been taxing for me to even carry put basic tasks for last 5 to 6 years.\n \nI approached a psychiatrist, wasn't dealt with much care and concern, he was the most awful doctor one could ever have come across. And I did try multiple other doctors, but they only worsened my case and were not very enthusiastic for the treatment. So I had to consult my old doctor with no other option. He is the only one I can afford and go to to be honest. \n\nSo that psychiatrist put me on medication for Bipolar Affective Disorder. I am on 20 mg Fluoxetine (Prozac) and 100 mg Quetiapine (Seroquel). But my doctor friends are of opinion that I don't have Bipolar Affective Disorder and I feel that too, just depression due to unhealthy atmosphere and repeated failures. \n\nAnd now I come to reaching therapists out online. Many therapists called me after I reached them out on their websites and dropped a mail. They were kind and polite enough to call me. But, they charge between 2000 to 4000 per session. And that's an exorbitant amount. I really can't afford that much. \nIt seems therapy is truly for rich people. \n\nOther therapists I reached out here and was referred to by other girls out here on reddit, did reply and explain the process, and then after discussing the payment and all, out of blue just ghosted me! I texted them to remind multiple times but to not avail. They didn't even have the basic courtesy to be polite and simple just refuse if they're really busy and have jam packed schedules. They just didn't reply back. \n\nSome therapist I reached out here on reddit and she did reply but yeah took her own sweet time. And she did ask me when I'd be available and she'd call me and I did tell her I'll be available at 7.30 PM. But she texted much much later saying she had jam packed schedule and didn't check my text. So I said no problem she can call me whenever she has time. She said she'd call me today at 10 AM. Now my phone keeps hanging and malfunctioning and must have switched off or just automatically gone on airplane mode (sometimes it does that, automatically selecting options from taskbar). But to no avail, she was pissed off that I was not punctual and how I was disrespectful to her, because she made time to give me call. I made time for her yesterday and waited two days for her to reply and call me. She had excuses that she was busy, but forgodsake no one else could be busy or have some problems. \n\nWhy can't these therapists be more kind and polite. Is  it too much to expect a little empathy from the professional doctors and therapists who work in psychiatric and psychology department??? Don't they realize that clients and patients come to them in a very hopeless and very vulnerable state. Is it too difficult to be kind and polite?? \n\nI have been around doctors all my life. I know and have come across great ones but psychiatrists and psychologists and counsellors have been so unkind and rude and just pathetic. \n\nThe counsellor i was allotted by my hospital (defense hospital) blocked me from calling her, because she was very vague about timings and was never in office whenever I had an appointment, and I'd request her to be in office. She was so so awful when I had a breakdown mid session, she didn't even allow me water when I said I was thirsty amidst tears. She just had the water herself and ignored me. I know this sounds really childish and like venting. But I am in lot of pain really and can't find a solution and have become hopeless.\n\nPLEASE IF YOU CAN, (ALTHOUGH I HAVE GIVEN UP ALMOST) BUT REFER ME A GOOD PSYCHOLOGIST/THERAPISTS WHO HAS DECENT EXPERIENCE AND ATTITUDE, AND SPECIALIZES IN COGNITIVE BEHAVIORAL THERAPY. IF HE/SHE CHARGES DECENTLY THEN IT SHALL BE A CHERRY ON CAKE. Please help me out here!!!
229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I saw comments about people from different parts of the country not willing to accept coins of different denominations such as  ¹ 1, ¹ 5, ¹ 10 in a previous post. Lets see how many of us know that 50 Paise coin is a legal tender.\n\nAlso write your City/State(if comfortable) and which coins people refuse to take with what "reason" they give.\n\n&amp;#x200B;
230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I live in west Bengal and my location is near the Sikkim which has the border between china and India. My place connects the road to there. I haven't even experienced this in my whole lifetime but nowadays many helicopters and jets are flying to Sikkim and the. Coming back again. Its like 10 or 7 times per day. It makes a lot of noise. Some helicopters are like two propeller copters(idk what to say the name) and it feels like im inside the game : call of duty. And in the afternoon time many army trucks line up and heads to somewhere from the road near my home. The trucks contains something but idk what it is cause its covered in the container place. And many soldiers too go in another truck.\nI tried my best of my English to explain hope y'all understand cause im too curious on whats going on. Its not even normal. It feels like call of duty fr
234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Considering everyone is well aware of the problems plaguing the Indian National Congress \023 be it nepotism, inadequate grassroots connectivity, failure to adapt to contemporary political trends, or tackling religion-based polarization\023 the fundamental question remains; Why hasn't the party taken measures to overcome these obstacles and implement necessary changes?
235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hello,\n\nI\031m just trying to gauge the general feeling towards Canadians in India at the moment. We\031re a couple looking to spend a month in your country (around mid December to mid January). Basically starting from Delhi and making our way through the Western and southern parts of the country.\n\nShould we come?\nIs it safe?\nIs there general animosity towards Canadians because of the words of our Prime Minister?\n\nThank you
236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Are the contestants actually THAAAAAT prepared for the kind of challenges? Or is the show scripted? Do they give some sort of training for the contestants to handle ingredients or equipements or whatever is present there? Or are they expected to have prior knowledge about these things?\n\nI know they\031re very passionate about cooking but I can\031t help but empathize what I\031d do in that situation. I\031d be veryyyy messy =-=-\n\nNote: This is just out of curiosity. By no means I\031m undermining their efforts and knowledge.
237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How do I travel as cheaply as possible from Delhi to Colombo. How much would it cost me on an estimate? Has anyone here been?
238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I'm in India, And this question is more for indians. So I checked out prices of various coffee drinks and espressos etc in the usa. Let's assume that they're 4$ or so, and guess what the price is almost identical around 300¹ or so in Indian starbucks or OTHER cafes. If Indians aren't making as much money as americans, and the purchasing power is way less than them, then how do we justify spending so much money on a latte? \n\nAvg income in the usa is roughly 5000$ monthly, whereas in India it is around 80000¹ rupees(based on Glassdoor). So a latte in the usa is 0.1 percent of the income. Whereas it is 0.4 percent of the income for indians. \n\nPs: I'm not trying to judge people, they're free to do so. I'm only curious, and was wondering if people actually know shops that don't charge so much.
239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ince the defining consensus on this group remains pro development ( only 8% is an acceptable number) and \034teaching the person how to fish rather than feeding him off subsidies\035. Interested in how it should actually be materialized and what could be a few issues on the side that should be addressed (Genuine interest Alert)\n\n1.) Are subsidies inherently bad? If yes, why so. If it is a no, and I suppose most people would want a fine balance, what is this fine balance in quantified terms. Can we argue that only a certain percentage of gdp of the state and country should be restricted for the so called freebies. Also, in quantified terms, which states dole out the highest freebies and which areas dole out the lowest. Is congress the prime mover in doling out, is it brs, is it jagan Or bjp at the national level. Could one provide a quantified view on this? And while at it, could one provide an actual working definition of what freebies can be categorized in that quantified list. Is R&amp;D in technological capital a form of subsidy or grant, can a monthly dole out to families be catalogued as similar investments in human capital (a form of UBI).   \n2.) On teaching the man to fish. Subsidies are thought (by a vast majority of urban people today) to make a person lazy and disincentivizing to step out of his comfort zone in aiding the progress of the economy. Most job openings in India, at any formal or informal level that pay even a semblance of pittance, have hundreds of applications for every post. Any small gaps in the labor market are addressed by a stream of migrants from different states. and as we can assume that the current central government is doing its best in milking every resource in this country to create industries and provide employment based off it and is doing a good job in building the literacy base of the nation- Who exactly is this lazy person stuck to feeding onto subsidies. What are the statistics for gender and age and caste for people sucking in freebies. Are pensions for old women and men the only legitimate form of subsidies.  Are these people even required in the economy for it to progress, with their low grasp of the skills and abilities required to engage in fruitful labor. Cannot even see a tea shop in a remote corner of this country being understaffed.  \n3.) Most corporate houses are provided subsidies through various tax allocation mechanisms and loan write offs. Could we make a quantified per capita comparison of its scale with the range of freebies provided to people, especially on a per capita basis. Does data exist on this. If this is just a step in the process of creative destruction, are investments in people similar trade offs. Some people use them to get ahead while others stick to them as crutches. Can AI quantify which impoverished group of people deserve a better revadi as compared to a lazy bunch who are more probable to use it to just feed off from rotating doors of electoral parties.   \n4.) Since most Doomers, on both sides of the political platforms, indicated that UBI is inevitable with the rise of AI and automation. How do we look at our subsidies as different from them. I have seen quite a few NRIs in various forms advocating for UBI while talking about revadi culture of the Telugu states.   \n5.) Maybe one way forward is that governments should package subsidies in an elite language, Here we have-a new subsidy of 3000 rupees for every unemployed person that is suitable for enabling the individual\031s capabilities to progress on the Maslow\031s hierarchy of Needs that can empower the individual in up skilling his abilities on the employment platform and have a 0.8% further chance in having his AI curated resume on a higher pedestal.   \n6.) Do we get to vote on subsidies on the polluting industries.  Should we give them weightage as well in denouncing a party or a region for its subsidies\n\n&amp;#x200B;\n\nIt is clear that the welfare bills when inflated makes zero sense in economic terms and can put the nation and the states in debts that have to be inconveniently serviced over decades resulting in trauma for the exchequer.  The question here is what are the right kind of subsidies, are investments in humans not enabling human capital reach a basic baseline from which they can even hope to walk. Are subsidies that improve the efficiency of the economic engine the only form of right investments for the future.   \n\n\nwhat happens to the losers of this economic engine. Since there are 140 correct and counting, most people are going to be \034losers\035. If the moral argument here remains \034let them suffer \034 or \034no we should help them\035 how do we quantify what amounts of help or apathy they deserve.   \n
240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Is it just my industry or does everyone notice the slow disappearance of older workers and employees from work spaces? All hiring requirements seem to require a candidate with a maximum of 7-8 years. \n\nWhere are all the 50 year-olds going? How are they sustaining themselves? Truly want to understand how HR across India has low budgets and hiring those with lesser experience, if we are doing so well economically. \n\nOn the work front, one can see the slow decline of product quality. Surely, the experience missing from work spaces will show up in all sectors. \n\n&amp;#x200B;
241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am all about women\031s equality but i hate it when some women try to get unnecessary sympathy. My husband works in one of the big financial companies in India. He is one of the few male members in his team. His fellow team member is a woman who finds reason not to work. She would work on one file for 3 days whereas the work can be finished in max 2 hours. Harrases interns to work till late, asks them to check the same file again and again.  After all this she would go to the manager (who is a woman) cribbing about how her financial condition is not stable and she badly needs increment. She would crib when is given work. She would give excuses that her health is not fine etc etc. So the work is directed to my husband and his intern. Imagine all this is happening in a multinational company. Its been so many months my husband has to work from home on every saturday. My personal life has fucked up to another level because he hardly gets time to spend with me. That woman must be enjoying with her family on saturdays and my husband works his ass of even on weekends. \n\nWhy my husband not complaining about it? The company supports women\031s empowerment. His manager is a woman. Where to go and complain about it?\n\nIncidents like this really makes me wonder if i should really support feminism because some women definitely take advantage of the privileges given to them in a profesisonal environment.
243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Okay, so I am a 21yr old college student recently left my hostel and shifted home for a while due to personal reasons (uni in my city itself). As my room was in the middle of a renovation, and me moving back was quite sudden, my parents asked me to sleep with them in their room until the work was over. \n\nDuring my first night sleeping with my parents, my mum slept on one end, dad in the middle, and me on the other end. Once i fell asleep, i dreamt of waking up after being asleep in the middle of the bed, that is, between my mum and dad. Dad also woke up in my dream at the same time and asked me to find his phone for me, which also began ringing around the time he asked. My dad often keeps his phone on the bedside table but, in this case, the phone was ringing outside, in the dining region, which was quite weird. An important point to be noted is, in reality, and not only in the dream world, there is this huge window next to the dining region that we have that faces towards our neighbour\031s dense backyard, and especially during the dark nighttime, it gives quite a creepy vibe whenever I pass by it. I had the same vibe during the dream and I ended up not getting the phone. On the other hand, I ended up crashing at the bathroom and heading back to bed.\n\nNow, I am sleeping at the same place in the dream as I did before I fell asleep, mum on one end, dad in the middle, and me on the other end. I usually cover my eyes with my blankie to prevent the dim lights in the room to prevent me from falling asleep. As I was about to fall asleep in the dream, and right before covering my eyes, i quickly glanced over the edge of the bed near my feet for something, or someone, precisely. I had this lingering, weird, anxious, lowkey scared, feeling in me since dad had asked me to pick up his phone from the dining area. Anyways, I took a quick glance and there was nothing down there.\n\nHere it where it all began. As i proceed to cover my eyes with my blankie, leaving my nose and mouth in the open, I sense something on my right, near my right foot, while i slept on the right edge of the bed. I really don\031t remember what happened next quite clearly, but I began having trouble breathing. I felt as if I was being choked. I remember screaming for my mum, continuously. At one point I could see my dad sleeping next to me from a little gap from the blanket covering my face, but he wasn\031t responding to any of my cries. Until I screamed for one last time, and he finally heard me.\n\nI was back to being awake, all sweaty, heartbeats that could be heard by my dad, shaking my hands and feet vigorously so that they don\031t go numb. Dad asked me what was wrong, I told him I had a nightmare, a really bad one. Mum was still fast asleep. He made me sit up, and asked me to drink some water. I was still shaking from the entire experience. He noticed that and asked me to chant some mantras, especially the Gayatri Mantra. Exactly two minutes later, we hear the terrifying screeching noise right outside the window near the bed, which we later found out was that of a barn owl.\n\nThe experience still gives me the chills, and it just happened two nights back. Few weeks back to a month back, I used to have nightmares of a dark entity following me EVERYWHERE, continuously, for days. They stopped for a while, coming back only once or twice a week since. \n\nI just wish to know what I witnessed that night. And, If I\031m cursed or anything. This is scaring the shit out of me and my parents, I won\031t lie.\nHas anyone had a similar experience before?\n\nAny information would be appreciated.
245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I feel sad, but if the kapoor clan is OK with this what else can we say.
250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hello all! =K\n\nI hope you all are already familiar with this documentary shared on r/India earlier 17 Days back:  [Sadhguru: Journey of a Fake Spiritual Guru | Full Documentary.](https://www.reddit.com/r/india/comments/17uxfzi/sadhguru_journey_of_a_fake_spiritual_guru_full/)\n\nYesterday an update was posted by Kamdev on his [YouTube channel:](https://www.youtube.com/post/UgkxxAGN4_aJKF9m-STFWZpahxnwFl7tSfS5)\n\n&gt;Sadhguru sent a court order to Youtube against us to remove the documentary about him. Resulting, the video is blocked in India (Simply the video is gone) The video was watched by 4.5 million people till date. Which is huge. That shows how much valuable the video was for the viewers to understand the sadhguru better. The video was shared thousands of times, that shows the video contained the truth and the people thought that everyone should be aware of this truth.  \n&gt;  \n&gt;What was in the Documentary?  \n&gt;  \n&gt;1. The documentary first of all talks about the enlightenment story that Mr. Sadhguru has been telling all these years. And when I researched about his stories which has been told by him for years, through his videos and books, I found out there are too many flaws in his story. I just educated people about those flaws, and everything that I used to show those flaws were taken by his own material, like his books and videos.  \n&gt;  \n&gt;2. I talked about his, Wife, Vijayakumari aka Vijji. First of all I didn\031t want to talk about his wife. But he has been talking about his wife\031s mysterious death on public forums. And the reason he gives about his wife\031s death is, Mahasamadhi or death by choice (Mahasamadhi is the sate a yogi enters when they consciously make the decision to leave their body.) He states, mahasamadhi as the reason for his wife\031s death. And he makes a whole event about this story, he explains each and every detail of that day. The emotions and all. For a moment, forget about ancient India and Yogis and all, but in modern India where only the laws of court are admissible. Is Mahasamadhi legal in the eyes of Indian law? The answer is No. And this guy goes on talking about it, openly.  \n&gt;  \n&gt;3. The third most important point that, I brought in that documentary was how everything that he does, is copied from Bhagwan shree rajneesh AKA Osho. And if you have seen the video, then you might know that I have given plenty of examples to prove that.  4. At last, I talked about how, Isha Foundation exploit their followers through donations and making them work for free at Isha Ashrams. I have no annoyance that the video is gone, the video was watched by 4.5 million people, and it is the validation for my truth, and the validation that the truth hurts. I am not scared, but I know who is scared.  \n&gt;  \n&gt;The guy who claims to be an enlightened being was feeling insecure by a Youtube video. Wow!!!\n\nhttps://preview.redd.it/27gql6afap3c1.png?width=640&amp;format=png&amp;auto=webp&amp;s=9e604b57d739509f6543a3263c9dd5117e6dbe16\n\nhttps://preview.redd.it/zftbvamgap3c1.png?width=640&amp;format=png&amp;auto=webp&amp;s=02979aa82744c3fae14d74435cac890380e18243\n\nhttps://preview.redd.it/u8buqmnhap3c1.png?width=640&amp;format=png&amp;auto=webp&amp;s=8e6e52a672b4ed2167357f92766ff5cfe0e112f8
251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <\u0093 Hello Everyone! <\u0093\n\nI'm currently working on an academic research paper exploring the relationship between college education and income levels. Your valuable insights can contribute significantly to this study!\n\nIf you're a college graduate or a working professional, I invite you to participate in a brief questionnaire designed to gather data on your career trajectory and earnings. Your responses will remain confidential and will be used solely for academic purposes.\n\nSurvey Link: https://forms.gle/k27JybAAYb7wgB9p8\n\nThank you for being a part of this academic endeavor. Your input matters! Feel free to share the survey link with fellow graduates. Let's gather a diverse range of experiences to enrich the research.\n\nHappy sharing! =Ú<\037
252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is this real life shitposting?
253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          People who drive or ride across the country. Which city or state did you find police or people harassing you as they know you're an outsider?\n\n\nThere were multiple posts on reddit about Bangalore being bad especially for KL and TN registrations. What about other places?
257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AMA.  \nThis was fun guys. Milte hai agli baar. \n\nhttps://preview.redd.it/hehos5gewo3c1.jpg?width=3024&amp;format=pjpg&amp;auto=webp&amp;s=3de1b5d16812cdae2f41937184c79376fd12f2ba
258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hey all, I am ignorant of the Indian pop culture. I have observed an increase use of "moye moye" among Zoomers. Can anyone help me understand what is this all about?
259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I see there is a rise in no. Of couples who do not wish to have children due to certain reasons. Matrimonial websites should include this section so that it is easier for people to find a partner who thinks the same as them cuz I consider this to be a major life decision.
260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           4032x3024 shot on BMPCC 6K Pro graded in Resolve
261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My husband was diagnosed with Type 2 diabetes in May 2023. His Hba1c was 11.2. We met with an endocrinologist who put him on metformin 2000 mg and advised dietary and lifestyle changes. We did all of that and in the process my husband shed around 8-9 kg. \nTesting after 3 months, his Hba1c came down to 8.3. Not much but we were happy to see some progress. We thought we were in good hands. Endo prescribed meds for another 3 months (reduced metformin to 500 mg and added pioglitazone 15 mg) and assured us we\031ll slowly work towards tapering him off his meds.\nJust yesterday we went for his follow up appointment, and the endo\031s behavior was completely different. He brushed off our concerns (my husband looks and feels more thinner now and tired), and said that there\031s no way he\031ll be off his meds and that he has to take them for life. Didn\031t do another Hba1c, increased glit to twice a day and sent us away. \nMy husband was completely shattered, he\031s been working so hard to get his blood glucose in control (low carb, 10k steps every day). He\031s only 32, so to hear from a doc that he has to take meds forever brought down all of his motivation. \n\nWhat I\031m looking for now is a doctor who will actually work with us patiently, and some hope that this is not the end of the road for us\n\nNote: We haven\031t invested in a CGM (endo said don\031t bother) and his fasting is btw 110-130, but 2 hours post meal is 200-250. It comes below 180 after the 3 hour mark. Checking thru finger pricking. \n\nTLDR: Husband diagnosed with type 2, bad experience with endo- said no choice but to take meds forever. Looking for a doctor who can help us.
262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A great deal of the chocolate we eat involves kids working in slave like conditions in cacao plantations. From what I hear there are very few fair trade chocolate brands that actually sell exploitation free chocolate. However every such brand that I have found was American. So I'm wondering if any of you are aware of an Indian fair trade chocolate brand.
263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I'm a vegetarian and my Diet is pretty non diverse so I know I need to supplement through tablets.\n\nWhat are some supplement tabs people in India take, keeping in mind a veg diet that includes dairy?\n\nfor example, I take B12 tablets, twice a week, Multivitamins once a week If I remember, etc. So along with the recommendations on how to organize my intake is another problem I have.\n\nWould appreciate some advice on this.  \n\n\n(I'm 20M, I don't have any specific health issues, I'm just trying to get healthier and I do hit the gym almost 6 days a week)  \n
264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hi all,\n\nLooking for some suggestions for my trip to India in January. I'm flying into Goa where I will spend a couple of weeks relaxing and working. Then for another two weeks I want to travel and make my way up towards Rajasthan, to arrive at the end of the month where I will met a friend and likely spend one more week before flying home. \n\nCan anyone suggest a good route? The only place in India I have been is Kerala so the rest of the country is new to me and want to see the highlights. I wondered if Goa - Mumbai - Udaipur - Jodhpur - Pushkar - Jaipur - Agra - Rajastan - fly home from Delhi might work?\n\nAny tips or advice much appreciated. 
265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hello Reddit Family,\n\nMy uncle met with a fatal accident and is now undergoing a series of treatments and surgeries. The family has exhausted all their savings and is seeking our help now.\n\n[https://www.impactguru.com/fundraiser/help-ramsevak-mevalal-gupta](https://www.impactguru.com/fundraiser/help-ramsevak-mevalal-gupta)\n\nIf you can, please consider and contribute whatever is possible to help cover the cost of his ongoing treatment. **Every contribution, no matter the size, will make a significant impact.**\n\n[Please Donate](https://www.impactguru.com/fundraiser/help-ramsevak-mevalal-gupta)\n\nPlease share this post or the link, every effort and help is appreciated.\n\n&amp;#x200B;\n\nhttps://preview.redd.it/q1vosfgphn3c1.jpg?width=750&amp;format=pjpg&amp;auto=webp&amp;s=516981560c1db93313a931f53c59020cf76f1be8
266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hey. So basically my dad belongs to general category and my mom is from from a reserved category (she has her certificate and stuff). I did my schooling and everything from open/general category even gave my first attempt of entrance exams from same. But someone recently hinted us that I can get a certificate aswell cause of my mom. Is that true? Is it possible for me to get a certificate through my maternal relations?
267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \nMy paternal grandparents settled in India from Bangladesh after 1947. However, my father returned to Bangladesh and never claimed Indian citizenship. As his son, can I apply for Indian citizenship through my paternal grandparents? My parental uncles and aunts also settle in India.
269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n\nWhy does my friend keep lying and having self-pity? My friend and I have been friends for over 14 years. We both started down the same path. He and I both got our master\031s, and I started working right away. He, on the other hand, decided to start his Ph.D., get married, and have a kid. There was also societal pressure to get married but he wanted to start a family as well. When we were students, I was very poor and did not even have enough money to eat. He finished his master\031s one semester before me. After that, we lost contact for 2 years, and then we both ended up working at the same place as engineers. This time around, when we met, He had one son, a wife that was also doing Ph.D. and they had bought a car and were living in a nice 2 bedroom apartment as a family. I myself was in 40,000 debt, living with roommates in an apartment full of bedbugs and cockroaches. 3 years into this job where we were both earning well, I paid off my 40,000$ debt and bought a house. Meanwhile, my friend was cabbing too much and eating outside, but both he and his wife also had to send about 1600$ total a month to their parents overseas which I know is a lot. I too had to send money to family overseas and I paid for my brother\031s master\031s program overseas which was around 45K and my friend knows this. To make things worse, my friend lost his job in 2018 and then moved to a new city where he got a new job but lost that one too. Eventually, about 3 years ago, both he and his wife got a good job in their respective fields. His wife dropped out of the Ph.D. and works full-time as an engineer now. He still does the Ph.D. (been 12 years) and pays the university 300$ a month but has not had any publication so most likely he will not be getting a Ph.D. any time soon. They both earn well now, but they still both send money back home, but not as much as before. To make matters worse, he lied to his wife and told her his parents are rich and he does not send money back home. They do not have a good relationship and their child was not talking or uttering words, even when he was 7 years old, but I am scared to ask now if the kid talks or not because he never answers those questions. The child is almost 9 years old. He said his kid is not autistic or neurodiverse but just that there is some slowness like him and his kid has done speech therapy which he had to pay. Anyway, my friend keeps lying and saying he works at Walmart and that his wife works at a call center but I found out on social media and heard from other friends that they both work as software developers. The Walmart and call center story does not make sense because it would be hard to afford parent\031s living cost over seas and a rented condo for 1800$ a month with a kid. Unfortunately the house price also skyrocketed so they are not able to buy house. They are also in 30K debt. But they have been in that same amount of debt last 3 years. They asked for advice and I said to file consumer proposal which would freeze the interest and they would be able to pay off the debt but sacrifice bad credit for 2 years. I myself had similar issue before i bought my small townhouse. Anyway, I have been also going through a career change where I enrolled part time back into university and pay out of pocket. I\031m a burned-out software engineer and I am trying to follow my life long dream to get into health care preferably a dentist but it\031s hard to get into dentistry so most likely I will aim toward nursing. But i genuinely enjoy this and am not going in it for the money. But when i first told him my plans to switch career, he could not stop talking about how much money I would be earning. He then suggested his wife also enroll into my undergrad program or also try for healthcare. By then his wife already had a good job in her field as an engineer but he said he wants his wife to be doctor so they could earn more money. Either way, i said don\031t go into something for the money. The couple is also 5 years older than me. Anyway, I don\031t know what happened with that plan, and whether the wife is still pursuing that healthcare option. That\031s their business. I even suggested he drop out of phD since it\031s been 12 years with no publication and he just keeps giving university 300$ a month for nothing.\n\nSorry for this long-winded essay and will try to get to the point. I guess I always feel guilty when I talk to my friend. He always makes me feel bad for having a house or having a good job. For example, the other day I mentioned that the alumni association keeps asking for donation and right away, he said \034oh they know you have good job, they never bother me.\035 I said \034no i never told them my occupation but maybe it\031s cuz I signed up with the alumni association.\035 Or one time I said \034oh man, my dishwasher is messed up and costing me 400$, and they said \034at least you have a house.\035 Or sometimes he just says \034at least you have a good job, i work at walmart.\035 but I know 100% he works as a software developer and is earning almost as same as me. Anytime, he talks or texts me, it\031s always just to complain about money problem (debts, not having house). Plus the husband and wife together both earn well. Whereas in my family, I don\031t have a kid and sometimes I help out my family, but my wife makes minimum wage. I did get lucky when I bought the house cheap. He also told me he has daydreaming syndrome, and I will never understand mental illness because I don\031t have it. He says he sits around and fantasizes all day that he has a big, powerful position and a good relationship with his wife. My wife had mental health issues and she snapped out of it. I volunteer with mental health patients and a lot of them are very resilient. My friends\031 case always just feels like a case of \034woe it\031s me and pity party.\035\n\nAm I just imagining these? Am I reading too much into this?
270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I'm thinking of trying to sell stuff on Amazon. Mostly things I can source locally (though my friends have said there are better deals on sites like Alibaba).\n\nI recently checked out Amazon's "sell" section and it seems like all I need is a GST number.\n\nSo I checked about the process of getting a GST number. However, most sites aren't explicitly clear. While they said an individual can get a GST as a Casual taxable person, most places list stuff like "Proof of business registration or incorporation certificate" under docs needed so gets confusing.\n\nThe most official piece of info I could find a tutorial on gst.gov  (which I can't post because it's a link)\n\nbut then this talks about stuff like "State excise license" etc. Which makes me feel this is the start of a rabbit hole where there's are other legal formalities before GST registration and then some before to get those done.\n\nLooking for guidance on how to get started, and a comprehensive list of "All" legal formalities necessary to get started.
271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Almost ran into a collision yesterday because the vehicle ahead of me decided to switch lanes rapidly at 90+kmph without any blinkers or checking blind spots. He almost collided into me if not for the split second dodge and i had to jump into the next lane (luckily there was one). I\031m here at home safely today, yet traumatized by the incident.\n\nTo all your comments that will say, this is India, or that i expect too much, here\031s my question. Why do driving tests exist? Why do the officers get paid? How can more than 90% of population not use blinkers at all? What do they actually check in a driving test?\n\nAre driving license providers held accountable in any way?
272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I've been using spectacles since 8th standard. After finally getting a job a couple months back I'm thinking of using contact lenses as I can finally afford them.\n\nSpectacles have been good so far but during any physical activity like gym or running, they do prove to be a nuisance. So I've been thinking of trying connect lenses.\n\nAfter some reasearch I think '24H NXT monthly lenses from Aqualense' are pretty good. Within my budget and good hydration and oxygen permeability using latest silicone hydrogels.\n\nAny current/ past users of contact lenses, do tell me about your suggestions, experience or anything else that can be of help. Cheers!
273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I've heard very mixed reviews. \n\nI'm an NRI thats considering a hair transplant at a clinic in Ahmedabad. Interested in verifying the credentials, qualifications and work experience listed on practo...\n\nhttps://www.google.com/amp/s/www.practo.com/ahmedabad/doctor/dr-anand-52-hair-transplant-surgeon/amp\n\nWish to know if practo is any good or if there are other ways to verify history and background on a practitioner. \n\nThank you =\n
274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hi\n\nI have received an interview offer from Maruti, to work at their Manesar plant in an Operations role. My job will require me to work alongside the engineers on site 9 hours a day, as per the hiring manager.\n\nBefore going in for the interview, I wanted to know if any of you can share your experience of either working in Manesar or in Maruti?\n\nI searched online but could not find a lot about Manesar as a location and if it is safe for women.
279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             i know medicines require doctor prescriptions and what not but i have no idea what these come under. he ordered like 3 of each these dumb tablets and asked me to carry them with me while i fly.   \n\n\nhttps://preview.redd.it/dba46vv6cn3c1.png?width=1018&amp;format=png&amp;auto=webp&amp;s=24eda0c4512cd0237d5d44b545c3272d7c679c4e\n\nhttps://preview.redd.it/g9hc82b7cn3c1.png?width=1022&amp;format=png&amp;auto=webp&amp;s=0c2d8e26053ef1b98951f688c2fc07a78f90666a
280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So as far as I am aware you are allowed to possess :\n\n100 gm if you are a man \n250 gm if you are an unmarried woman\n500 gm if you are a married woman\n\n1) So if my wife and I were to have 600 gm and I were to die would she be forced to pay taxes on that surplus of 100 gm?\n\n2) What is the rationale behind restricting the amount of gold held by a person ? Is it to make you more vulnerable to inflation?\n\n3) What other countries similarly restrict your possession?
281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I\031m born and raised in a Tier 1 city. I used to earn 1.5L a month when I quit my job and got married to my partner and moved to a Tier 3 city. Tier 3 city does not have any work related to my field and I\031ve been struggling to earn. It\031s been 2 yrs with starting my own business and then moving to teaching. \n\nMy husband earns well and we have enough but I want to be financially independent. My parents visited me recently and they were paying for everything which I was okay with as they would like to do that for their daughter. I really wanted to buy a salwar kameez for my mother and when she liked something I said I\031ll pay for it as I really wanted to gift it for her. It was Rs. 1600/- only. \n\nThey payed me back everything even if I had spent 10 rupees. I was like okay maybe they want to spend money on me. So I asked my dad why he had to pay me back everything. I like gifting them and he asked me how much money I got this month. I said 30k (I lied as I only got 7k this month as I was travelling and doing some courses and couldn\031t take classes). To this he laughed and said that I should earn 1L a month. \n\n\nWell I\031ve been struggling and working really hard and setting up plans to reach 50k per month then to 1L. But the way he said was so condescending that I returned the amount to my mother. Even if I was earning 1k a month, it makes me happy to buy something for them. These things have happened so my times that whenever my parents or in laws visit me, I feel very difficult to manage.\n\nMy in-laws think that I married their son for money, my parents make me feel that I\031m useless and ruined my career. My husband asks me to listen from 1 ear and let it go from the other and not bother so much. Am I overthinking this? Thank you for reading.
282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Got a WhatsApp message from a unknown number. They had my HDFC life account number, amount, year it started. I guess they were waiting for me to respond I did not. Just reported them after taking a screenshot. Reported to hdfc Bank via Twitter. This post to warn ...don't respond to unknown even if they have your account number. And it's scary that my information has leaked :(( has anyone else got similar message?
283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i still remember the good days when spending above 15k gives a great value for money phone but recently mobile market of india has gone shit. no phone is literally a good value under 25k price range. most has a useless curve display, a shit snaprdragon 695 processor, u shape notch (samsung thing)\n\n&amp;#x200B;
284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So quite recently I got diagnosed with BPPV. Initially my diagnosis was low vitamin D and B12. After that my physician said i might have to consult with an ENT.  So it's been 3 weeks since that , been following up. I am feeling better than before. But I still have balance issues and light dizzy spells time to time. \nHas anyone recovered from BPPV , and what's your remedies. I read online vestibular therapy can help.  My ENT has currently said we will check in 2 weeks and take further action. \nBut I read online that ppl who BPPV have chances of having it again and I would have to deal with regular dizziness spells. \nI am based in Bangalore. Any recommendations to an ENT or vestibular therapist.  How do I recover completely as it's affecting my daily life.  \nFor ppl who don't BPPV [BPPV](https://www.mayoclinic.org/diseases-conditions/vertigo/symptoms-causes/syc-20370055).\nPlease keep your vitamin levels in check!! Being in IT and working long hours messes up your health =-. I feel like quitting IT and working in a farm is healthier.
287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Does it work and is it legit compared to avodart ???
289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hello I am from Rajasthan and currently doing my bca 1st sem but because of my medical condition I cannot continue my further studies being physically present in classs so I am looking for online degree colleges so I found manipal university Jaipur online bca course and I also found some reviews on quoro and YouTube and mostly everyone says it's legit so I registered and got a call from counselor and he told me the last date of admission is 30 November and I am registered on 1 Dec but there were 3 admission cancelled so I still can get admission but I am not sure if I should or not they say you will be 10% off if you pay your 1st sem fee today which is 22,500 rupee but I also so saw some comments on YouTube on these MUJ video they said that these guys would make you pay the fee but after that they would say your document are not valid or they say there no more seats available and also they wouldn't refund your money but I am very confused and desperate right now so I am here looking for advice.
290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I'm gonna visit Trivandrum and Rameshwaram soon and I am really interested in buying kalamkari fabrics to make blouse etc.. can anyone recommend good places to visit and purchase? Sorry it these areas don't sell such fabrics, I'm novice to the region as going there first time. Thank you in advance .
291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Please let me know if this is a wrong sub. Apologies. \n\nI\031m starting my MBA in April and I need a new laptop cuz my current laptop\031s mousepad ain\031t workin and I\031ve basically put my laptop through a lot of shit - poured water, broke screen cuz while trying to make it a tab, etc etc. \n\nCollege has recommended \n16 GB RAM\n512 GB Storage Min \n\n( Mac needs parallels but can be managed without it also )\n\nI want to buy it less than 90k, the lesser the better (Bank reimburses laptop cost) \n\nShould I get a Mac? If yes, which model matches the description? Or do you recommend windows? \n\nCan we use One Drive on Mac also? \n\nKindly suggest a good one! I\031m using HP Pavillion 8 GB RAM one now.
292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * New Lotus species - "Namoh"\n\nNational botanical research institute picked a lotus with 108 petals, the director bragged about the significance of 108 number in hinduism and Science minister Jitendra Singh said:\n\n&gt; the name "Namoh" was a \034grand gift to the relentless zeal and innate beauty of Shri Narendra Modi. \n\n* RapidX was renamed as Namoh bharat.\n\nThe entire Delhi-Ghaziabad-Meerut rapid rail transit will be operated and maintained by Germany\031s Deutsche Bahn for 12 years. \n\n* Narendra Modi Stadium\n\nMotera Stadium is an international stadium in Ahmedabad, renamed as Narendra Modi stadium. \n\n\n* Jawaharlal Nehru Road in Sikkim renamed as Narendra Modi Marg. \n\nA second road linking Gangtok and Tsomgo lake was renamed as Narendra modi marg by Sikkim governor Ganga Prasad. \n\n* Medical college named after Narendra Modi.\n\nAMC MET Medical College in Ahmedabad was renamed as Narendra Modi Medical college.\n\n*  Panchayat training institute in Gandhinagar named after Modi. \n\nA training institute under Gujarat State Panchayat Parishad in Gandhinagar will be named after Prime Minister Narendra Modi. \n\n* The Nehru Memorial Museum renamed. \n\nThe Nehru Memorial Museum and Library will henceforth be known as the Prime Ministers' Museum and Library, with a new exhibit on Prime Minister Narendra Modi soon to be launched. \n\n\n* One of the 3 new varieties of Orchids in sikkim named after Modi. \n\nModi unveiled three new species of orchids found in Sikkim. They were named \030Cymbidium Sardar\031 (after Sardar Patel), \030Cymbidium Deen Dayal (after Deen Dayal Upadhyay) and \030Cymbidium Namo\031 (after Modi).\n\n* A new desi mango named after Modi. \n\nPrime Minister Narendra Modi, who has often revealed his love for mangoes, has got a new variety named after him in UP.  \n\n* Israeli Crysanthumun flower will now be called "MODI".\n\nA new fast-growing Israeli flower was named after Prime Minister Narendra Modi, in a special gesture to mark the first visit of an Indian premier to Israel. \n\n* Dendrobrium Narendra Modi - An Orchid named after Modi. \n\nAn orchid was named after Prime Minister Narendra Modi to mark his visit to the National Orchid Garden of Singapore. \n\n\n* Check dam in Gujarat named after Modi's late Mother.\n\nA check dam is being built on the downstream of Nyari river on Rajkot-Kalawad road,  has been named after Modi's late mother Hiraben. \n\n* A road in Gandhinagar named Modi's mother.\n\nGandhinagar Mayor stated, "PM Narendra Modi's mother Hiraba is turning 100 years old and keeping in account the demand and feelings of the people, it has been decided to name the road as "Pujya Hiraba Marg".
293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have been observing the changing climate seriously for last 5ish years. I definitely believe that the climate is chaning and that it will get horrible if we don't act on it in time. However, based on whatever scientific studies I have read so far all the reports basically say things are going to get a lot worse before they start getting better again.\n\nI am unable to decide if I should be having kids with such an existential threat looming over our heads. I don't want to have kids and see them suffer in climate wars. I don't necessarily think that mankind will be wiped out because of this but I do believe survival will get pretty difficult over next 50-75ish years. Especially, in countries like India which will be hit the hardest because of climate change. Sometimes (when I see all my friends having/planning for kids and never worry about climate change at all) I feel like I am just overthinking things and have anxiety and I shouldn't focus on the negatives so much but other times (when I see the news about drought, wildfires, pandemics et.) it's just impossible to ignore this.\n\nIs there anyone else who is thinking this? Or am I just too paranoid?
294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Today marks the birthday of my dear friend who tragically ended his life on January 21st this year. He was only 29 and had been married for almost six months. He was a compassionate, peace-loving person who always lent a helping hand to everyone he knew. He adored Pawan Kalyan and was known for his incredible dancing skills and charming personality, especially among women.\n\nPersonally, he played a pivotal role in my life, pushing me out of my comfort zone. When I moved to Hyderabad, he was my sole contact and ensured I had a place to stay. He encouraged me to find a job and make a life for myself. Despite studying together for just a year, our friendship spanned a decade, feeling more like brothers. Our families were intertwined, almost as if separated by blood, often staying at each other's places.\n\nI deeply miss him. Whenever I see a picture of him, memories flood back, making it hard to linger on them. He boosted my confidence, guided me on various fronts including styling, walking, and talking. I even felt a tinge of jealousy as my mother adored him as much, if not more, than me.\n\nOur last interaction remains vivid. He came to my home in November, troubled by a mechanic issue with his car. After resolving it, we enjoyed a feast together, and he urged me to visit his home with my family, a promise I regretfully failed to fulfill. In January, when I called to check on him, I was unaware of his tragic end. His mother revealed the heart-wrenching truth\024his wife's constant taunts and abuse led him to take his own life.\n\nHe was sensitive and internalized everything, never sharing his marital struggles with anyone. His wife's indifference and calling his mother only after he passed away left us shattered. His mother pursued legal action against the mental harassment her son faced.\n\nIt's a plea to anyone facing hardships\024please don't consider ending your life. There's always someone to talk to, professional help available. Your life holds immense value. Please, stay strong and take care of yourself.
295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     "I was coming back from Nanded to Ahmedabad by train in 1st ac and our coach was right next to the general/sleeper coach \n"Also i travel by train rarely\n"The experience was unacceptable ( I was prepared it was gonna be dirty but not this much ) the seats had dirt , wrappers , some liquid etc \n"Cockroaches were roaming around , there was a very tangent smell( we used our personal perfume ) \n\nI paid the cleaner ¹100 from my pocket just to use fenyl and clean the seats \n\nThe bathroom was literally disgusting , i almost vomitted ( people from general/sleeper class were using it ) \n\nAlso I tweeted and tagged irctc about this so someone locked the door between general and 1st ac but then again those food sellers ( example chai Lelo , paaani Lelo ) opened the door to get into general class \n\nSo overall , I don't recommend anyone to use indian railways \n\nI'm attaching some pics below\n\nAlso I got an message automatically that my problem was resolved ( like wtf )
297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Need your help
300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \n\nThe topic of my project is the folk dances of Nagaland, and I have planed to perform one. When I searched for Nagaland's folk dances on YouTube, I came across the bamboo dance, later I found out that it is the folk dance of Mizoram. Now, I'm confused as the information on Google is unclear. It would be very helpful if someone could suggest an easy folk dance that can be performed individually as well. Thank you
301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The value of rupee compared to usd keeps on lowering. Why is that ?
302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I get it yeah &some women use their bodies to get likes and views on social media but whats up with these wannabe andrew tates and patrick batemans &.like ok you have your opinion fine &.but the thing is these so called alpha sigma teens have now just turned to blatant hate towards women in general eveytime i see a woman enjoying herself even if she is covered head to toe ,the comments are horrendous&for example everytime i see a woman dancing , partying , enjoying with her friends or family on social media ,I make sure i dont open the comments cause everyone is just throwing around The R word and slit shaming like they pay for their lives &.The reason our men have such a low reputation in other countries is this , even if we have a chance to be decent and respectable, we would choose to be complete dicks and act cool and tough just cause we need to \030EmBrACe MaScuLiniTy\031 &this is not manly to me , this is pathetic loser behaviour. I was having a conversation with my friend\031s younger brother (he is 16) and said we should become sigma and tough cause a man doesnt need to listen to anyone &I was like yeah buddy sure you are tough cause you live your life according to what you listen on internet &All these toxic male influencers tell him to be sigma but i think they will indirectly make him an incel &..
303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When we post a complaint to Cybercrime Portal over the first few days here are the status updates.\n\n1. Transferred to &lt;Police&gt; District \n2. Accepted/Rejected/Hold \n\nHowever after this it remains almost still. Also in the case of second status there is no comments/remarks mentioned in the portal also. \n\nAnyone from legal or Cybersecurity background in the sub can enlighten us here?
304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I've been pondering over the potential applications of large language models (LLMs) like GPT-4 in India, a country with a large varitey of languages. While these models have shown remarkable proficiency in English, I'm curious about their adaptability and usefulness in the Indian context, where multiple languages coexist and thrive.  \n\nI am also curious about how these models are being adapted for Indian languages and their practical implications across your professions. For example, are they being integrated into fields like education, healthcare, law, consulting, local governance, local businesses, or content creation? \\[both govt. and private sector\\].
305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thankfully I have my ATM Card and Aadhar with me. I wanted to replace these two, but am worried if someone may misuse my lost ones
306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A stray puppy (2 months old) got his/her leg severely injured . Should i call an NGO (I am a student so dont expect my parents to give money for this) ..\n\nHelp ! Recommend some NGOs for Dogs
307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        India's GDP for April-Sept (H1 2023) = **142.3 Lk Cr**. Source: [Ministry of Statistics](https://pib.gov.in/PressReleasePage.aspx?PRID=1981170)\n\nThe calculation is done using 2 approaches(Income and Expenditure). Here is the breakup  \n\n| INCOME approach                                    | Amount      |   %age |\n|:--------------------------------------------------------|:------------|-------:|\n| Financial, Real Estate &amp; Professional Services          | 31.67 Lk Cr |  22.25 |\n| Trade, Hotels, Transport, Communication                 | 21.61 Lk Cr |  15.18 |\n| Agriculture, Livestock, Forestry &amp; Fishing              | 19.99 Lk Cr |  14.05 |\n| Public Administration, Defence, Edu, Health, Recreation | 19.41 Lk Cr |  13.64 |\n| Manufacturing                                           | 18.91 Lk Cr |  13.29 |\n| Net Taxes                                               | 14.04 Lk Cr |   9.87 |\n| Construction                                            | 9.91 Lk Cr  |   6.96 |\n| Electricity, Gas, Water Supply &amp; Other                  | 3.91 Lk Cr  |   2.75 |\n| Mining &amp; Quarrying                                      | 2.86 Lk Cr  |   2.01 |\n\n\n| EXPENDITURE approach                      | Amount      |   %age |\n|:-------------------------------------|:------------|-------:|\n| Consumption (Households &amp; Firms)     | 85.93 Lk Cr |  40.76 |\n| Investments (Gross Fixed Capital Formation) | 42.15 Lk Cr |  19.99 |\n| Imports                              | 34.24 Lk Cr |  16.24 |\n| Exports                              | 30.84 Lk Cr |  14.63 |\n| Govt Expenditure                     | 14.40 Lk Cr |   6.83 |\n| Valuables                            | 2.05 Lk Cr  |   0.97 |\n| Changes in Stocks (CIS)              | 95.55 K Cr  |   0.45 |\n| Discrepancies with INCOME approach   | 24.98 K Cr  |   0.12 |
308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have been following Tejas development for 10 years now.\nA repeat order is testimony of quality of product.\n\nAwaiting export orders and kaveri engine.
311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ukhrul: In a Netflix style Heist series, Rs. 18.85 crore was looted from a Punjab National Bank today at the heart of Ukhrul town, as per reliable sources. \n\nThe PNB situated in Viewland-I, one of the main bazaars of Ukhrul town was looted at around 5:40 pm on Thursday by around ten unidentified masked men carrying sophisticated weapons.\n\nUkhrul Times has learnt that around 8 personnel from the 6th Manipur Rifles were mending the PNB bank. The Punjab National Bank was formerly known as United Bank of India and was converted to PNB recently. So far, no one has claimed responsibility while filing this report. No arrest has been made so far by the local authority. This is the first time such incident of bank robbery has happened in Ukhrul town. Ukhrul Police has began probe into one of the biggest bank robberies in recent memory. \n\nIt may be mentioned that a Churachandpur Axis Bank branch in July 2023, located at Teddim Road and Thangzam Road\031s junction at Churachadpur town was found looted of over Rs. 1 crore by staff of the bank after it reopened for the first time since Manipur conflict erupted on May 3, 2023 in Manipur\n\nAdditional Source: https://ukhrultimes.com/rs-18-85-crore-looted-from-pnb-ukhrul-town/
312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I am a recent father of a healthy 2 year old. I noticed lack of confidence(in worldly) practical skills in girls nowadays. Strong and confident women I know are that way because of traumas they had in their past where they were forced into drivers seat. Generally Girls are not prepared for the real world like Boys are from the start.\n\nI intend to teach my child to be on Drivers seat from the very start. Raise her like a people raise boys. I am assuming she wont lose her feminine side as everyone else around her will be already teaching her that.\n\nFew of my friends think its a bad Idea and could be bad for her future(in terms of interpersonal and social relationships). What does this group think?\n\n&amp;#x200B;
313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We are ranked 166.
314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As a Norwegian living in a country absolutely ravaged by alcoholism , I really respect certain Indian states for banning it and throwing it in the trash bin of history like everyone should, and on top of that, unlike most places where alcohol is banned, doing it from a totally secular perspective, proving that the motivation doesn't have to come from a god. What I would like to know is how successful the bans have been at removing this liver poison from society, do the people of these states genuinely reject the substance, or is it like weed in the West where it's mostly formally banned and you could get in trouble for it, but it's still widespread?
315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indians, will you be interested to do this in real life ? Help any three random people and in return ask them to help three more people in need. The cycle starts this way with the aim to help as many people in need as possible for the good of society. I did my three people today. 1)dropped an aunty to her home who was not able to find a rickshaw since 10 mins.\n2)upgraded a random uncle's ticket from second to first class in Mumbai locals.\n3)Gave 300 bucks extra to my maid and asked her to distribute in her community.\n\nOther than my maid I expect the other 2 people to help three more IE 6 people in total to receive help. This sounds too naive but what's the harm in trying? Indians will you be interested to try this ? And try helping in a non financial way so that your volunteers have to do something to forward your good deeds. We shall come back to this post in a month to see where this leads.
318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Throwaway cz, wait tf no idea why, nobody knows my main either. Anyways, coming to the point. I am 18M, grew up in a t1 city, upper middle class family, and got a fine(fine as in "fine like wine") college after 12th/JEE shitshow.\n\nHowever, since I have started clg, I feel so hollow. I have a gf for 1.5yrs now but since clg we are in LDR, so whenever I think about her, my chest gets heavy cz I miss her so much and we spend wayyy less time than before(also screens ` irl humans). She says we'll eventually be together, but I have no idea how&amp;when. She is a great person and matches my energy, hence the thought of leaving her pricks me like a knife while the thought of staying in with no timelines breaks my brain.\n\nApart from that I had 2 vv beautiful friends, but they're far too, they've got a new life, yk it feels like I am disturbing them when I talk to them. On top of that I failed to gel with people in my class, and my roommate in pg left cz he got another clg near his home. So, I basically live alone rn.\n\nI keep going out, play sports, library, canteen, but I feel uninvited and repulsed everywhere. People will call me for assignments, night before tests, a lot of them know me, but at the end of day I am roaming alone in the uni while I watch others walking around in groups. Though, there's one guy from hostel who calls me to hangout once a week sort of(and I really look forward to it).\n\nI am so disconnected, every ping prompts me to pick my phone, maybe somebody remembers me. And hence, I am just not able to get any work done, all the time distracted by some shit or the other.\n\nI love to code, create graphics and play flute but I have lost all focus. I can count at least 5 days in nov which I spent lying on bed, scrolling reels or listening spotify, while eating 2 meals a day. And yes, I was off porn for the last maybe 2 years (I didn't keep a track), but I have started watching it again. Everything feels so shit, plus I barely passed end-sem exams.\n\nWhen I go home, I get scolded left and right for all the things I have done wrong or something that idk how to live properly or how I don't come home that often. Well, I mean I was never close to my parents or sister. Yes we are blood related, but emotionally? Lol\n\nI am having suicidal thoughts since morning, that's why I got scared and thought I need to vent because I don't want to die. I thought of uninstalling social media, but that scares me cz then I'll be even more distant from my already far friends. I thought of breaking up since the distance is taking a toll on me, but then I am afraid if this is a insane decision taken in a lost mental state.\n\nI have no idea what to do with my life hereon. One instance I feel broken, next second I think that my life is way better than many and I am an ungrateful bitch. I just want to hug another living soul to feel that I am still alive. I also want to travel with friends, I also want to hold hands with my gf. But right now, I just want to cry but I can't.\n\n:)
319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Are there any stores in India (preferably Delhi) where I can order a customised 12\035 vinyl record? (I\031m a bit acoustic so I feel the need to explain that I want to customise a vinyl record with 4 songs on each side of the record)
320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Does anyone here have experience in filing complaint with Vigilance commission against government official accepting bribe ? Do they keep your identity confidential ?\n\nSay if someone has video+audio evidence of a government official accepting a bribe and wanted to send it to vigilance commission. But video also has the recorder and his friend's voice in which they are also discussing the matter with the officer, so can be identified if this video is played in front of him. He might relay this info to his buddies and recorders will be in deep doo doo.\n\nNeed advice from someone who has actually complained or know someone who has filed complaints with the Vigilance commission.
321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A few edits:\n\nSome of y'all really need to think before dming people, I've turned off my chat requests.\n\nI'm not going to tell you guys where this was. I'm 17, I'm not telling you where I live. All I can say that it's a residential place in a good part of (not Navi) Mumbai.\n\nAnd to those people who are saying this is creative writing, I know I write well, thank you :) doesn't make it fake\n\nAlso a lot of people are calling me a dude, I'm a girl =- \n\n&amp;#x200B;\n\nNo, it's not an Internet-only thing.\n\nI had my pre-boards today and we were returning home early from school, I'm in the 12th Grade. Around 12pm, our bus pulled up in front of the gate of society and about 4-5 of us had to get down.\n\nThere we saw an entire mob of people surrounding an auto parked in front of the gate, there were 2 Muslim women in the middle of the mob, carrying bags, so I assume there were going to/coming from college/coaching.\n\nThese people were all up in their personal space and were shouting at them, tugging on their Burkhas like sleazebags. There were people around them, maybe 2-3 who were trying to stop them, but they could do nothing. I know absolutely nothing about it, exactly what happened, but it was so harrowing to watch. One of the guy managed to pull off a girl's scarf and she was visibly terrified.\n\nOur driver turned the bus around, and we went through another gate because there was a 8 year-old girl with us who was wearing a hijab. His presence of mind at the moment was especially good, I wouldn't expect many people to do this.\n\nI don't know what's worse, that this happened right in front of a police station or the fact that there was a huge group around them, watching or that it didn't even make the local news.\n\nFor the past \\~2 years I thought "Mumbai hai, yahan nahi hota yeh sabh" and especially did not expect it to happen in a place like my society, but it's here guys, this does not exist in a void on the internet or only the horrible parts of the country where it can be dismissed as "Uneducated cow belt happenings".
324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am an overseas resident planning to bring my cycle to India as a gift for my uncle.\n\nThe cycle is more than 2 years old, and I don't have the invoice as I am the second owner. The previous owner paid around 2 lakhs for this cycle when new, and I paid 1 lakh when I bought it last month however there are no records for payment as I paid in cash.\n\nWhile my airline can transport the cycle, assistance with customs clearance is a concern. Can someone help me, please?
325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The AMA is now live: [https://www.reddit.com/r/india/comments/188cjus/hey\\_rindia\\_its\\_abijit\\_ganguly\\_here\\_im\\_a\\_standup/](https://www.reddit.com/r/india/comments/188cjus/hey_rindia_its_abijit_ganguly_here_im_a_standup/)  \n\n\nAbijit Ganguly is one of the known faces of Stand-up Comedy in India. He speaks about a wide range of topics from marriage, politics, corporate life, Bollywood, cricket to millennial behaviour.  He performs his act in a mix of Hindi and English.\n\nAbijit was awarded the Most Promising Comedian 2019 at Iconic Achievers Award. Abijit has done 2000+ shows for clients like McKinsey, E&amp;Y, PWC ITC, Amazon, Genpact, Deloitte, PWC, Airtel, IIT, DTU, NIT, VIT etc.\n\nAbijit has acted for various digital and print ads for clients like Kia Motors, Urban Company, Treebo, Bingo, Titan, Tinder etc. He has featured regularly for cricket-related projects with Cricbuzz. He\031s also written a Web Series for Times Mens XP \023 Joint Venture and is currently involved as a Dialogue Writer and Script Consultant for a Feature with a prominent director.\n\nSo do join Abijit on 1st December for this AMA session, only in r/india !\n\nhttps://preview.redd.it/76zzwn2bbi3c1.jpg?width=1024&amp;format=pjpg&amp;auto=webp&amp;s=a6d2a438a31b3462e57d8a8b88b1c51678a6c591\n\n*Note: This post is an announcement. The AMA is not starting now. The AMA is not paid for by Reddit in any way. All views of the guest are their own and featuring the AMA does not imply an endorsement by Reddit.*
327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Collecting them since childhood. Most of them are Indian currency but some are foreign currency.
330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Urgent adoption required in Pune/Mumbai<\017<\017\n\nRoohi is a 7-8 months female cat who was found in a dying state due to viral infection when she was merely 2 months old. Since then she has recovered and is thriving. She was supposed to be adopted but the people bailed on her last minute.\n\nRoohi is litter trained, dewormed, vaccinated and sterilised.\n\nShe is very friendly and loves cuddling with humans. She is very playful and friendly with other cats and kittens of whatever age.\n\nPlease come forward to give her a home\n\nFor more details- contact 7043782899 on whatsapp\n\nPS- She also loves watermelon.
334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            India GDP growth in Q2 FY24 beats estimates at 7.6%\n\n https://timesofindia.indiatimes.com/business/india-business/india-gdp-data-q2-fy-2023-24-indian-economy-gross-domestic-product-growth-numbers/articleshow/105627559.cms
335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am 27F, I generally prefer wearing sarees below my navel because it is quite comfortable compared to wearing saree above navel. Few woman at my workplace have made nasty comments by saying that I wear saree like that to attract my manager, I felt very bad. Do you people really think wearing a saree below navel is too bold ?
338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hello everybody.\n\nWe are a couple (1 girl / 1 man), 30 and 33 years old. Entering in India by Nepal on the 21 december 2023.\nWe already have done the Rajasthan some years before and don't plan to do it again.\nSo we are looking for advices, real experiences from tourist or local people for making our itinerary. We want a mix between the unknow authentic pearl of India and the places you must to be. We want to see beautiful temples, nature, meet people, have experiences with them...\n\nI am waiting your comments and recommandations.\n\nThanks a lot
339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hi All. I received a job offer in Germany and had applied for long stay Germany VISA for myself , wife and kid together at VFS Bangalore on 6th November. I had received the VISA on 18th November but there is no update yet on the family reunion VISAs for my wife and kid. We need to travel on Februray1st 2024 which is a few months away but I wanted to know how much time will the processing take for my wife and kid for example whether can it take 6 months ?. Any inputs based on past experiences will be helpful for me to mentally plan . Thanks. 
340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I'm planning to renounce my passport soon but while I have the passport, i wanted to know if there are places I should visit before getting another passport.\n\nSome examples I can consider are visiting Bhutan, which is easier for Indians than most other countries, same with going to north east India which require special permits afaik. Please advise with other ideas if you have them.
341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Is it just me or is everyone seeing the hate around the country \n\nI mean, what has this country came down to It's either\n\nHindu VS Muslim\n\nBJP VS INC\n\nand just religion, religion and more religion\n\nI mean you can make an argument saying it's just keyboard warriors, or it's just a bubble \n\nReality is different what not\n\nBut how long before this bubble becomes a reality or when it's too late to do anything\n\nWhat can someone do to safeguard from any future problems?\n\nWhat do you guys think of this and what's your plan if something bad happens with all this hate going around
342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 At the Ananda Bhavan next to my home, a dog keeps crying day and night. Blue cross says it\031s normal for dogs to cry, and when I call the restaurant they say that the dog is trying to jump the fence, which makes no sense as it is crying day and night.\n\nWho else can in contact to save this dog? This dog is crying for a month and I have lived next to these people for years, they have never treated their pets well. This dog is clearly being abused somehow.\n\nThanks in advance, all ends till now have been dead ends.
343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is the first time ordered any electronic outside of amazon. After checking most people and they said they are ok and they have not faced any ussues with delivery, i went ahead and got the ifi zen air can. The delivery was on time. But within a week i started hearing coil whine every few minutes. I raised an incident and asked for return. They asked to send the product back which i did. Now here the issue starts. \n\nAfter the initial acknowledgement of the product receuved by them and will take 2-3 days to review i am not getting any response. This is now the 5th day since the day they received the product and they have not replied to any of the 2 emails I sent requesting for an update. \nAlso all the tickets I have raised for that issue has been closed after the product was sent back to them. \nAnd they have removed the reward points they gave when buying the ifi product stating it happens automatically when a return is requested. \nThe oy time someone responded was when i used the chat on their website on the second day promising i will for sure get an update by the third day. Bit now when i go to that website I do not see an option of chat. \n\nI am just completely unsure of what is going on and guessing my money is wasted. I will stick to the limited products on amazon going forward  atleast they just don\031t ghost you.
344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Well having seen all the news recently about aliens aka foreigners getting Indian passport in a improper/illegal manner and having applied for passport recently; my experience seems to be that it\031s easier to get a passport as a foreigner then an legitimate Indian or maybe perhaps I am just not Indian enough to get one in the legitimate Indian way altho I did like to believe I am a Indian and so did my now deceased grandfather who once fought for the independence cause and later stayed and lived in India. \n\nBut well believing is only believing and sometimes beliefs are not truth right so maybe all of us are not Indian. \n\nAnyways, coming to the point here\031s my experience applying for a passport, \n\nApplied for passport online, filled up the form followed the usual steps paid fees booked appointment, went for the appointment scanned my fingers took my photo took copies of few documents \n\nAs someone, who lives in a village with limited transportation means getting a passport is already hassle as I had to travel 1.5 hours to a near by town POPSK aka to Post office camp for appointment. \n\nTake a ferry, travel highway on an auto for a hour then take a e rickshaw to the post office. \n\nThe fact that every other post office has UIDAI adhaar collection and so on KYC capabilities due to them providing banking services  and thus every post office is equally equipped to collect passport application and forward to RPO.\n\nThe fact that the Department of posts reach and capabilities is not being utilised to have a better reach and also for ease of providing public service is just kinda sad.\n\nSince what happens in a PoPSK is just collection of documents and biometrics and everything gets processed by Passport officers at RPO if you submit to a post office camp. \n\nWell few days later my passport application starts process at RPO and soon I receive a Objection letter relating to furnishing a document proof I have already submitted well I email the RPO email and they respond back that my passport will be issued post police verification and is waiting for clearance from police to get my PV done. Which is very generic and vague answer. \n\nWell couple of days later police officer calls and asks me to go to police station with a list of documents well okay. \n\nThen I learn that here that I need a document that proofs that my grand parents or my parents have lived in India before the 80s and basically well my family was poor and rented from place to place having lost my grandparents a long time ago and having lost most old documents due to a flash flood couple decade ago welll& can\031t imagine what gonna happen if I couldn\031t find any documents but thankfully found his service record which was not completely destroyed.\n\n\nWell then submit it o cops now it\031s Been 3 weeks that the police verification report is under review at RPO is showing to me and due to lack of their communication and being unable to reach them through twitter and email I don\031t know how to respond to the objection letter even if I need to or what the issue with the document furnished \n\nSo now I will have to book an appointment at the RPO and travel 5 hours just to reach the city the RPO at to enquire about the issue. \n\nUgh
345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     You want to only do the following:\n\n1. Have a nice start to the day with maybe a nice walk and some meditation.\n2. Literally walk to the gym and work out 3-4 hours \n3. Come back and work on your laptop ( good WiFi, co working space ) for 4 hours \n4. Chill in the evening ( board games, table tennis, swimming, clubs , make new friends ) \n\nAny city in India is possible. Most important goals are less traffic so I can walk where ever I want. Should be able to cook something easily. And less honking if possible. \n\nAny recommendations ? \n\nI am already thinking along the lines of Goa, Kochi, Dharmashala but don\031t know where to begin my search. Don\031t want to go to a place and then have a look.
346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am a nervous flyer with anxiety on claustrophobia and turbulence. I am seeing a lot of rants here about Air India quality and promise to never fly with them. All of this is making my anxiety worse for an upcoming flight from Delhi to Chicago. Anyone who has flown Air India international and has good things to say about safety of the flight? 
347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Does anyone here have any experience setting up cloud kitchens based out of your own home and then selling food on swiggy,zomato etc? Is that a viable thing here?
348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I want to choose a payments bank to open an account with:\n\n* Airtel Payments Bank\n* NSDL Payments Bank\n* India Post Payments Bank\n* Fino Payments Bank\n* Jio Payments Bank (Haven't had much experience with Jio but I don't have high hopes from their services.)\n* Paytm Payments Bank (They're a-holes, so would like to avoid unless they're really the last resort.)\n\nThese are my requirements:\n\n* Need a Visa/Mastercard virtual card.\n* Should have good uptime, digital services &amp; ease of use.\n* The overall experience should be good.\n* Preferably zero balance.\n\n\\--------\n\nContext:\n\nMine is a 3rd tier city/town. It's well developed, so don't imagine a village, but that's to set the context that I only have India's major banks like HDFC, SBI, ICICI, Yes, BOB, PNB etc available and none of the obscure ones like IDFC or Kotak or similar.\n\n  \nMy father is old school &amp; has his primary device with the banking number in a keypad phone. He also has 2 smartphones for business use.\n\n  \nHe needs an account to use UPI &amp; for daily use, for which I'll need to open an account in the smartphone with a different number since his main number is gonna stay in the keypad one (so can't use UPI with it). We don't wanna go with a full fledged bank, so need it to be a virtual only account with less offline clutter like a physical card, cheques or branch visits etc.\n\n  \nI've heard Kotak is good but we don't have a branch, so can't get their account since RBI mandates a branch at the address of the holder.
349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So, I have a small white dry patch of skin on the base of my penis since past 20 days. Already had std tests done and I am clean. Went to doc today and he diagnosed me with "penile skin lesion" He told me its a bacterial/fungal infection and there is nothing to worry about.\n\nNow, he has prescribed me a FUCKTON of medicines. I bought them and went home only to find that two of them cure issues that I don't have. Please can any doctor tell me why were they prescribed to me? He is very reputed doc from Apollo Hospitals and charged me 1200. Also around 1900 for all these meds???\n\nso, he prescribed me all these 2 times a day for 7 days\n\ntab zocev 500\n\ntab amrizole dsr 500 mg\n\ntab enzoflam\n\ncap forcan -- single dose\n\ncloben g lotion\n\nI searched and 1,4,5 options sound good to me but,\n\n2(amrizole dsr) is for "Amrizol-DSR Capsule is a prescription medicine used to treat gastroesophageal reflux disease (Acid reflux) and indigestion by relieving the symptoms such as heartburn, stomach pain, or irritation"\n\nand 3(enzoflam) is for "Enzoflam Tablet is a pain-relieving medicine. It helps in relieving moderate pain and reducing fever. It is used in various conditions such as muscle ache, back pain, joint pain, menstrual cramps, and toothache."\n\nWhy the fuck was I prescribed pain killers and acid reflux medicines????\n\nAttaching prescription link\n\n[https://imgur.com/a/oa1QflR](https://imgur.com/a/oa1QflR)
351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hello everyone.\n\nI am returning to India (Bengaluru) for a 6+ month stay after about 10 years abroad (Indian citizenship). I see a lot of new essentials frequently mentioned online that I do not have (UPI, Aadhar, etc).\n\nWondering if there is an online guide for setting up these bare essentials when I move back. If not, happy to collab on one for future reference with others.\n\nSpecific questions that come to mind:\n\n* Does an aadhar card come in days / weeks / months after application?\n* Do I need an aadhar card to get a new prepaid phone number or would a PAN + passport suffice? Are roaming charges still a thing or does a phone number work everywhere like local now?\n* How prevalent is UPI / online payments like paytm? Do I need an aadhar card to create one? I do have an old bank account with SBI which I can revive. Is it true that most businesses (even street vendors) have gone cashless and will only accept UPI?\n* Are the major India-specific apps (food delivery, bill payments, travel etc) available on iPhone or should I get a backup Android phone for these while in India?\n\nThanks for your support.
352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hey all, I'm a fresh undergrad that just completed a degree in info science and tech - data science emphasis from the University of Arizona. I am Indian, but I have never lived in India. I grew up in Kenya, moved to Dubai (grade 5-12) and then pursued higher education in the states for the past 5-6 years. I also have work experience in the states (2 yrs in IT) and marketing minor and associates in BA. \n\nFinding a job in the U.S is proving to be more difficult than ever, especially in tech as alot of local talent has emerged and essentially filled the gap that was there before. So most companies are not really willing to sponsor. I have been thinking of coming back to India but i'm afraid that I won't fit in and I have heard about toxic work environments in the country. But one thing I will have there is freedom and be free of the shackles of immigration. That is something I have never had, because from country to country, I've been on visas. \n\nDo I have a really old view of India ? Have things changed alot in the job market and do managers still expect you to work 80 hours a week with no overtime pay ? I feel like India has changed alot (although it has a long way to go) but I'm not sure if the change is truly real or not.\n\nI keep feeling overwhelmed when thinking of coming back because I'm afraid that a) I wont fit in b) work environment will make me hate my life c) the job market has crazy competition, because everyone in India is smart ash. im 23. 
353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I have decided to seek therapy but there are no female therapists in my town. These two sites came on top when I searched for online therapists in India. Wanted to know how good they are coz I don't want a bad experience to make me afraid to seek out help again in future.
354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hey people! \n\nMy friend and me are traveling New Delhi and Jaipur from 5th to 23rd December. \n\nWe are interested into what to see and what to do (apart from the main attractions), especially cultural aspect and, if possible, to meeting some of you (if you are up to it) :) \n\nWe are from Croatia, my friends studies IT in Zagreb and I'm on Landscape architecture in Rome :) \n\nHit us up!
355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lolololol..... Just The other day I was discussing with my friends that since the trapped miners have successfully been rescued. And GUESS WHAT.....??!!
359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My mother got contacted by someone for her business. He asked her for her UPI number while on call with her on a different number.\n\nThat\031s it.\n\nWithin a span of 15-20 minutes, there were 4 transactions which appeared on her Google pay saying \034Axis Bank Credit Card\035.\n\nIt seems like the scammer used her number to make these credit card payments but -\n\n1. She didn\031t receive any OTP from the bank\n2. She didnt share her UPI pin\n3. The scammer only knew her mobile number.\n\nMy mom got scarred by this event and we have disabled UPI by contacting bank.\n\nI have raised dispute on NCPI and my dad has registered FIR and contacted Cyber cell.\n\nIs the money recoverable?\nPls let me know if anyone has heard of such a scam before.
361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My Profile (I'm from India)  \n\\- IELTS (8 band ovr)  \n\\-CGPA 6.57/10 from reputed NIT in Electronics in 2021  \n\\-2.5 years experience in service based MNC (not relevant to SDE)  \n\\-GRE 301(I know this is bad but most universities have waived this off)  \nMy Target Course\n\n\\- MSCS / MCS\n\nI agree my profile is not good for MS in CS, but I think I can still get  \n\\-CSU(Long Beach/East Bay)  \n\\-San Jose State University  \n\\-Stevens Institute of Technology  \n\\-Illinois Institute of Technology  \n\\-New York Institute of Tech and other low ranking unis..\n\nOR  \nMS in Data Science/Computer Eng/ other related CS fields from a slightly better college like\n\n\\-SUNY Buffalo.  \n\\-North Eastern University\n\nIs it worth spending 50-80L (Inc. cost of living in worst case scenario) to go to a university ranked below 100?  \nIs there any other uni I can get in? really confused if I should try for it or continue in India.\n\nAlso, can someone please suggest is it possible to get admission in a good university in Germany or any other EU country? Kindly Suggest.  \nThanks in advance!
362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I'm starting an FMCG goods manufacturing unit with Shiprocket as delivery partner, while trying to get everything set up, I hit a issue with setting it up.\n\nIt's is asking for a 12-digit Udyog Aadhar number, but I've already registered for Udyam, which gave me a completely different format (UDYAM-XX-XX-XXXXXXX).\n\nHas anyone else encountered this? How did you navigate through it? Worried if this discrepancy might cause issues down the line
363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hello everyone,\n\nCan you please let me know some of the legit organisations which accept donations for:\n1. Disease research (Cancer, auto-immune diseases, etc.)\n2. Education \n3. Agriculture research\n4. Climate research\n\nThe country in which the organisation is based doesn\031t matter. Any help is much appreciated. \f<ý
364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i came across a thread from a few years ago where people were bashing an (England based Indian) influencer because someone on instagram Ask asked which caste does she belong to &amp; she wrote she is a brahmin with the disclaimer that she doesn't believe in caste system. The comments were saying how disgusting it is &amp; she totally believes in caste system otherwise she wouldn't mention that she is a brahmin. Then an westerner saying how the Indian girl they knew let them know she is a brahmin with a proud face &amp; brightest smile without being asked anything about it. Overall the comments had the vibe : "you should be ashamed of being a Brahmin &amp; mentioning anything about it" and some comments were saying how the caste system is still oppressive today.\n\nSo my questions are,  how people in your region are discriminated based on their caste in 2023 ? ( except the extreme cases like Dalits ) \n\n do you think people can mention that they are brahmins without "flaunting" it or looking down on others ? \n\nas a young person with comparatively limited life experience, living in a metro city &amp; born in a middle class family; the only time I see people discriminating based on caste is when it comes to marriage but there is still significant number of intercaste marriages around me happening for younger generation &amp; some old people are open to it as well. Sometimes, those old people will prefer young people to marry within their caste but not so much that they wouldn't  want any intercaste marriage to take place. \n\nwhat is your experience ?
365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        &amp;#x200B;\n\nhttps://preview.redd.it/uzynt7y35u3c1.png?width=439&amp;format=png&amp;auto=webp&amp;s=042d37f3a9609de40276c38e2f3c94797b79e109\n\nIt's been quiet a long time I have been seeing such reels of people claiming to earn a good amount of money by doing WFH jobs on this government website. I wanna know if this is legit and if yes where do we apply? Every time I see such reels the creators just hide the process of applying and say pls DM. Feels like a scam to me sometimes when I sent them a dm and then they give a number and say dm on whatsapp.\n\nIf someone has knowledge about the same pls let me know it'll be really helpful.
366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Caution: Long Post\n\nMy father had a small land (Hereinafter "Property Q") that he wanted to sell. A neighbouring guy (X), who was neither officially appointed as a broker or an agent, found an interested party(Y) who was willing to pay 10 lakhs for it. Y signed an agreement affidavit (titled "Money Receipt") with us, giving us 1 lakh in advance, until the transfer is made. The witnesses to the agreement were X and an agent of Y, let's call him Z. Here are 2 legal issues:\n\n1. Y signed an affidavit agreement to sell Property Q to a third party for 19 lakhs, even before Property Q was transferred in his name. They took an advance of 50000 from that third party as well. Is it legal? \n\n2. Now Y is declining to buy the property and is asking us to refund the booking amount of 1 lakh. During the pendency of the transfer of ownership, Y made some developmental work (built pathway, raised two levels of fence) on Property Q without taking direct consent from us. They (Y and Z) had only informed about the same to X. X told my dad that "they are doing some work on the land that they will use after the transfer is complete." There was neither any mention of how much money was being spent on such work, nor was my father's consent taken for the commencement of such work. We can say that my father had the knowledge of some work going on in Property Q, but did not give his express consent to such work. Now, Z is calling on Y's behalf and is demanding 1 lakh from us for the work they did on the property. Is there any basis for such a demand? He is threatening my father and talking rudely. How would we know whether they spend 1 lakh or lesser on the property? Z is arguing that he had informed X about such work going on, so we are bound to compensate whatever they're demanding. It is to be noted that X isn't our official broker or agent. My father had the knowledge of such work being done, and did not stop it on the basis that Y would buy the property, so he let them do whatever they wanted on Property Q. Now that Y has backed out from buying the property, he is demanding 2 lakhs in total (1 lakh advance amount and 1 lakh compensation for the work). \n\nAre we supposed to give the compensation? Or can we ask them to just restore our property to its original state? If we are bound to compensate, can we ask them for bills to prove a total of 1 lakh expenditure on the property? \n\nSomebody who has concrete knowledge about property law, kindly advice. If there is a need for any additional detail, do ask. Thank you.\n\nEdit: I know this is asking a lot, but it would be of immense help of the relevant sections/laws are mentioned along with the solutions. \n\nEdit 2: For further context, the sale hadn't been done for a long time (approx 4 months) because Y had taken the responsibility to get the Record of Rights, since he had contacts with the tahsildar. He failed to get the RoR and backed out from buying the property. 
367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Last week, at the Bengaluru airport, my mother's suitcase was not tagged at the Indigo check in counter due to the carelessness of the lady behind the counter. The employee sent it along on the conveyer belt without the tag and when my mother pointed it out, she assured her that it will reach the destination after making a phone call and describing the bag to someone on the other end. Now my mother is a senior citizen, was travlling alone, and is a non-confrontational person, so she trusted the employee. But at the destination, her bag never arrived and she raised a complaint at Indigo's counter. It's been a week now and they're claiming via sms that they cannot find the bag. It has to be at the airport somewhere like the lost and found right? Indigo has not reachable any other way and the last we heard from them is an email asking what contents were in the bag. Even though there were no items of great value in there, we don't want to let them off the hook. \n\nHas anyone faced a similar situation? How can we get Indigo to respond or take accountability? And is there any hope of getting the bag back? \n\nThanks in advance!
368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For some context,\nMy brother is epileptic, and he\031s currently living with my parents. He\031s had a very difficult childhood, we both have similar trauma ( him more ) from our parents that most other Indian kids have. However, over time I\031ve learned to deal with it on my own by going to therapy, self care and keeping my boundaries. My brother however has become more and more bitter, abusive, both physically and emotionally. He hits them, tries to manipulate them, control them &amp; all the works. He refuses to leave the house and live in a PG. my parents do not want to be near him because they\031re afraid of him. They\031re scared he\031ll retaliate and assault them even more if we went to the cops. They\031re just refusing to reach out to the police unless he hits and injures someone again. He has some real anger issues and I have messages on WhatsApp where he\031s admitted that he doesn\031t know any other way to show anger other than to hit. \nDue to issues with my visa, if I leave the country where I\031m working right now I can never go back.\nI feel really lost and helpless and am constantly worried everyday living in fear for my parents.\nCan anyone please advise or suggest how I can handle this? My brother and parents live in Bangalore
369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Suppose there is a guy in his late 20s who already has a professional set and is reasonably intelligent. But he wants to pursue law (as a means of activism) because he has a low opinion of government (irrespective of political party) and wants to challenge or hold accountable every stupid decision the government takes. Then how should he go about (without incurring big fees or breaking up with his current profession)?
370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hey, so I was looking up reviews of [Desertcart.in](https://Desertcart.in) on reddit and found some good reviews from a few years ago. Wanted to know if it's still as good and if i should order from them.  \n\n\nHas someone placed an order with them recently and can share their experience? And did they charge any extra amount apart from the price + how long did the delivery take.
371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let me preface this by saying this isn't a post where I ask for a job, I'm just really confused as to where I am in my career.\n\nMy qualifications are as follows:\n\n* Engineering from a T1 college (passing marks)\n* P.G.D.M Finance from a no-name MBA college, good marks but everyone wants T1 MBA colleges only (I know, big mistake, but was coerced into it by parents)\n* Worked in Tech Consultancy for 2years as business analyst, quit out of frustration due to ungodly working hours, no clear career growth + not related to any of my education. Was drawing 7Lpa.\n\n\nBeen unemployed for 8 months due to a mix of family reasons (dad got into an accident) and personal reasons (depression).\n\n\nThe question is - How f*ked am I?\n\n\nI want to work in finance but I don't have any related experience and from what I've applied to (not much and was rejected promptly) everyone wants MBAs from T1 colleges or needs to have 1+ years experience for even entry level roles.\n\nWhere else do I look for roles apart from LinkedIn? I've checked on naukri and indeed and the postings there are for software dev roles.\n\n\nAny help would be appreciated. Thanks in advance.
372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hi everyone,\n\nI'm planning to go to this concert and I'm looking for someone to join me!\n\nIf you're interested in joining me, please send me a message! We can meet up at the venue before the show or grab a bite to eat beforehand.\n\nThanks!
373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hi, I'm looking for a psychologist for a family member who is a pathological liar - he has a very bad habit of borrowing money and furnishing fake receipts etc. without any dire need of doing so-- i.e. he has everything paid for by his family (food, housing etc.) yet still manages to find a way to get into unnecessary financial and legal trouble.   \nAny recommendations will be much appreciated. Thank you. 
374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I am getting tired of the apps currently on my phone that I usually open up when I am bored \n\nInstagram: full of hate, fake content, unrealistic life expectations set etc\n\nTwitter: everyone is fighting everyone, propoganda posts, creators selling products everywhere, list of plugins/apps/etc etc that you must read before you die.\n\nReddit: out of 10-15 posts, i get 1 relevant post that I want to read about or engage with\n\nYouTube: difficult to find relevant content and not make the whole feed just about that one thing.\n\nMedium: best ones are behind paywall\n\nInshorts: Quality of articles have gone down, lot of unresearched, scraped from websites type of content\n\nI am curious what apps folks here have in their phones that helps them pass time, while simultaneously keeping them entertained, contributes to their knowledge, world awareness. Bonus points if it's free, does not have useless creators spreading propoganda or for-view content.
376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   According to what I have read, atheists are not recognised for the purpose of inheritance laws. So what happens when someone who is an atheist and can\031t be traced back to a religious origin passed away without a will? Similar for rare religions?
377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So this is my second post asking about the topic, because few months ago people suggested me to research more. Now that I have researched a lot more than past, How viable you guys think a PC assembly business in India is? \n\nWas planning to sell it online and also somewhat offline (my place is a bit off-side than the main city area). The competition in consumer gaming PCs is insane. However I found out that a new business can indeed match the prices with giants like mdcomputers without making profit in the initial few months.\n\nMy interest says me to focus on servers, workstations and custom water cooling for some reason. there aren't many big players in this segment from my knowledge. \n\nWhat are your thoughts on this? Is there something I am missing?
378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Apologies if this is a low effort post, I'm visiting india for the first time with my non-indian friend and she only drinks bottled carbonated/sparkling water. I've been trying to do some googling but not sure if I'm looking at the right place. Does anyone know a brand that sells this type of water in cities like Udaipur? Many thanks!
379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I live in Mumbai. The hype around Godzilla Minus One is absolutely insane and so many people are saying its the best from the franchise in years (maybe even the best ever). Others are even saying its the best movie this year. I checked bookmyshow and its nowhere to be seen. Is there any way to ask theatres if they plan to show this? Ik many people would wanna see this so i see no reason why they shouldnt
380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I'm currently in my final year of  bba from a normal college. All these years I never thought of doing an mba because my siblings advised against it as it's " just a waste of time". But now I kinda want to experience a good college life and all and want to study further. Should I do an mba? Also if yes would it be worth it to do it from colleges like christ or lpu? I haven't given the cat exam this year but I'm planning to give cmat. Also I can't spend too much money on an mba as we can't take that much of a financial burden rn.
381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hey folks,\n\nI am looking for a budget tracking app, which can track bank SMS, working offline.\n\n\\- FOSS recommended, didn't find anything good for it.- Should work offline (will disable internet access from Android settings for app).\n\nCurrently tried:\n\n\\- Moneyview - Money Manager (Not updated, notifications not coming properly on Android 13)- Money manager (Red Piggy Bank Icon - made configurations complex)\n\nAny good suggestions?
382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984 Bhopal Gas Tragedy: One Of The World's Major Industrial Accidents\n\nhttps://www.ndtv.com/india-news/bhopal-gas-tragedy-1984-one-of-the-worlds-major-industrial-accidents-4626867
384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So I bought boult earbuds last week and I received a call from them today telling me to rate their product 5 stars and send the screenshot to their employee's personal number. What should I do?
385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So I've been collecting for the past few years.\n1. All my coins (non duplicates laid out)\n2. Azadi ka Amrit mahotsav full set\n3. My collection of 5 rupee coins\n4. Miscellaneous coins\n5. Super old coins including a Dutch VOC and what I believe is a Mughal coin\n\nAll these coins I either got from grandparents or from collecting change from shops and one or two I got from friends. I don't buy coins online or in stores. Ive no clue what the total value of these will be so if someone could help me out I'd be grateful.
388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I recently had a chat with a few of my old friends about pursuing an education abroad, and I was quite surprised by some of their reactions. \n\nSome of them were of the the opinion that studying abroad is actually a waste and cited the following reasons:\n\n1. India is growing at a rapid pace and opportunities are plentiful and salaries are great, and this will only continue. (I don't agree with this point at all) \n\n2. India has great institutions and those should be sufficient if one wishes to pursue higher education. (I don't quite agree with this as well. I literally have friends/colleagues who graduated from IITs say that their educational experience abroad has been much better, and bar 2-3 professors, most of the research going on in India is lagging by around 5 years) \n\n3. Wastage of parent's/personal money. (Idk how education can ever be considered a wastage. And if money can buy you an opportunity to have a better career and life, always do it. ) \n\nThe only reasons I could think of people having this mentality is either they really belive our country will grow to be a land of opportunities or they're just being petty and have "angoor khatte hain" type of attitude.
390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hey guys, I\031m looking for a good whey protein. I have used two foreign brands prior to this and one of them made me experience a lot of bloating. The other one was good but it\031s not available in India. This is why I would prefer something that is easy on my stomach. I don\031t have a budget restriction because I don\031t want to cheap out on something like whey protein. Please suggest the best option available in India.
397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hello, I'm an aspiring 3d artist and a not so hard-core gamer. I have an Acer Aspire 7 gaming laptop which I bought about 3 years ago. Now the issue is since last couple of months it's giving me BOSD errors specifically -DXGKRNL\\_FATAL\\_ERROR whenever I try to open a 3d application or try to play a game. I tried to contact Microsoft,Acer andd Nvidia but they couldn't help me and just suggested me to go to a repair shop . I went to a repair shop but the thing is where I live I don't think they are very well skilled to repair this kindda mess. So they said they couldn't fix it and just told me to buy a new PC. (NOTE- when I disable my dedicated GPU the PC works fine but as soon as I enable it the PC crashes on the last frame, but what good is a pc without a GPU right??). Fixes I have tried till now- 1 .Reset it 3 times. 2. Updated all the drivers. 3. Showed it to a technician (who i think was not so skilled). Please help me out as I currently cannot afford to get myself a new PC.  \nlink-[https://drive.google.com/file/d/1bBKZanfcTOroAKdJW\\_SnaddhjEqX-dDz/view?usp=sharing](https://drive.google.com/file/d/1bBKZanfcTOroAKdJW_SnaddhjEqX-dDz/view?usp=sharing)
401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              https://m.timesofindia.com/india/silkyara-tunnel-collapsed-20-times-in-past-5-years/articleshow/105637134.cms
402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nearly every continent or country that the British/(other colonial powers) colonized at a time still has a small or large number of British/White presence to date. But why that is not the case for India or the subcontinent? \n\nI know it was hard for them to get along with Indian customs and people but is there any other reason?
403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Don't know if it's completely true or not. Is it just a matter of chance or there are deeper reasons ?
404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Update - we complained to every website and phone number possible.\n\nIt was midnight, and on the pretext of going to the washroom, this guy repeatedly touched my friend's thighs. The first time, she felt it was a mistake, but it happened thrice, and this guy kept going to the washroom repeatedly. All this took place in AC Tier 2. My friend didn't wake me up. she told me about this after three days.\n\n\nMoreover, the next morning as we were some hours away from our destination, a friend of that creepy guy from another compartment came with his bags. He asked the creep why there were strand of hair on his jacket. In Hindi, the creep replied that he had spent the night with the girl with long hair, referring to me. They both looked at me, assuming we didn't understand Hindi. This alerted me, I was busy revising for my exam so didn't pay heed first. It felt so humiliating and I felt like slapping him then and there. I told him that I understood what he meant and he should stop right there. To this he just nodded like an idiot which angered me even more. \n\n\nThese guys were in their mid-thirties! My friend defused the situation and asked me to bear with it for few hours. Things like these scares her a lot. These guys had the audacity to claim they were talking about something else. The friend of this guy laughed at the creep because they got caught. Just before this, he was mocking Kannada and made offensive remarks about not understanding what these women (us) were saying because they thought we were talking in 'Madrasi'. God knows if those uneducated good for nothing creeps even went to school that they don't know there's no language called madrasi and people in Karnataka speak Kannada. Btw we were talking in Marathi all this while. Another facepalm! \n\n\n\nAnd now, three days after the journey, my friend informs me that the creep did this at night. I'm so angry at my friend for not waking me up at night and asking me to remain quiet the next morning when I was giving them a piece of my mind. \n\nCould you please advise on how to report him? I don't know if this a right flair.
405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hello,  \nHas anyone booked a helicopter ticket between Chandigarh and Shimla? Their process to book seems shady AF.\n\nHelicopter ride is available between the cities, and I filled a form on the official website. Then, next day I got a call on Whatsapp from a random number, claiming to be Pawan Hans executive, told me the cost of flight, and shared payment details.   \nThe only cross-checking I could do about this, was check the number on Trucaller, where it is called "pawan hans".  The number was not even a business account. \n\nHas anyone had a similar experience with booking tickets before ?   \n\n\n  \n
406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Viacom18 is majorly owned by Reliance. The only time, I am hoping for some Corporate influence on government policies.
408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This question is inspired from a AskReddit post.
417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Movie is bad. Really bad. Few decent action scenes, but beyond that no emotional investment. No tension building. Disjoint scenes, with characters acting in and out of character which makes no sense. Its shit.\n\nBut the worst part is misogyny. And all these guys coming out and saying this was entertaining, and its just "male guilty pleasure". Bro, its really fucked up that THATS your guilty pleasure! WTF! It just shows the society's mentality overall. Is there any wonder that india is one of the most misogynistic countries in the world? Western women are cautioned to travel to india? Women are harassed so much? Is that really a surprise? If thats the guilty pleasure of these guys, when the consequences are removed, like after marriage, is there any wonder that they treat their wives like shit, and the marital rape is legal?\n\nFuck!
427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pretty much the title.\n\n  \nMy mom has some mobility issues, but is able to move around the house and manage her chores. However, she's terrified of being alone. It's a fear she's had since she was little. She says she wants people around her all the time, especially at night.  \n\n\nThe fear heightens if she's alone in a bigger house, so insists on being in a smaller house, but would still, even then, prefer having someone over at least for the nights.  \n\n\nI tend to travel often for work and she's trying to sleep over at friend's or relatives places, however, I do not see this as a long term solution.  \n\n\nI'm not sure what the fear is, she just says "I feel scared to be alone / lonely".  \nAny advice / resources would help. (I live close to mumbai btw). 
429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I stay 2000 kms aways and really can\031t work in trains.\nFirst of all air india provides shit service and dynamic pricing seriously.\nPehle I was thinking may be due to small city but The flight is always booked but still they are running at very high prices.\nDynamic pricing ka bi had hoti yaar not like you can keep increasing as if people just cut their travel.\nAnd now after seeing in this post I would rather pay that money and go by flight. I am not at all happy :(\n\nThis is the post I was referring to.\nhttps://www.reddit.com/r/india/s/nyu4it1r7H\n\nI am hating this place more than ever now.
431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I have started my job and my mother has no one to take care of anymore so she is at a loss of how to keep herself occupied. She has asked me to help her find some small business/activity she can spend time in, so I am asking you guys for inspiration.\n\nDo you guys have any clue or ideas you can share with me? \nIt would be nice if the business/activity can generate some small wealth but it's not necessary if it's a fulfilling activity and keeps them occupied and healthy.\n\nINFO: My mother is in her late fifties. She has been a housewife her whole life. I am willing to invest Rs 5000 monthly in the business from my salary.
432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We are a group of four coming from South India visiting Himachal Pradesh next week. On the morning of Day - 1 of our trip, we'll be arriving at Shimla from Delhi. And we will have about seven days in our hand where on night of Day 7, we will board a bus to return to Delhi. \n\nWe already have a rough itinerary planned where we would be covering two days in Shimla, Kufri and rest of the days in and around Manali (Manali, Kullu, Parvati Valley) covering all the major tourist spots and still have plenty of time left for the last 2 days to maybe explore some offbeat places.\n\nCan you guys please suggest some places that one must not miss from your personal experiences, food one must try before leaving and also maybe more places that an be covered in the span of these days=B\n\nWe are open to changing our itinerary if it feels like it's worth it.\n\nThanks in advance!
434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hello Reddit community,\n\nI'm currently dealing with a frustrating and complex situation involving an international transaction with Best Buy, my bank in India (Fi Care), and living in Germany. I'm hoping to find advice or insights from anyone who may have experienced something similar.\n\n**The Background:**\n\n* I live in Germany and had ordered an Apple MacBook Pro from BestBuy.com on November 23, 2023 (Order Number BBY01-806819160707).\n* The order was meant to be collected by a friend in the US, whom I plan to visit in February, which is now too late.\n* Unfortunately, the order was cancelled by Best Buy, and a refund was processed to my account in India.\n\n**The Issue:**\n\n* Shortly after the refund, on November 29, 2023, the amount was debited again and reportedly sent back to Best Buy, without my authorization.\n* Fi Care, my bank, placed a lien on my account, stating that the transaction was successful, and according to them, Best Buy received the funds.\n\n**Complexity of International Dispute:**\n\n* I have repeatedly contacted Best Buy's customer service for clarification and a written statement, but they maintain that they haven't received the second payment and cannot provide documented proof due to policy restrictions.\n* Being in Germany, I don\031t have the option to sue Best Buy in the USA, which complicates the situation further.\n\n**Stalemate Situation:**\n\n* My bank requires documented proof from Best Buy to take any further action, but Best Buy is unable to provide this.\n* I'm caught in a loop with both parties, and it's causing significant financial and emotional stress.\n\n**Seeking Advice:**\n\n* Has anyone here been in a similar international transaction dispute? How did you handle it?\n* Any advice on alternative approaches I can take to resolve this situation would be immensely helpful.\n\nI appreciate any guidance or suggestions you can offer. Thank you for taking the time to read about my dilemma.
435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hi, I\031m from the UK and am attempting to plan a trip around the world that includes India. \n\nHow much does an entry visa cost? It\031s just for a single entry, probably be in India as about 3 or 4 weeks as a tourist next month.\n\nI seem to be finding very different answers on Google. Anyone able to help me out, perhaps someone with recent experience?\n\nThanks
436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \nHow ED works in \nMoDi government
437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I went today (Friday) to PVR book a ticket for tomorrow (Saturday) for the movie Animal. But I was denied by the staff that I cannot book a ticket offline for the next day and will have to do book it online i.e. I can only book tickets offline for the same day and not the next day. I am not very sure about it but as much I can remember, I had booked Jawan ticket from the same place offline a day prior to the show.\n\nI love close to the mall, so I prefer going to book it offline so I don't have to pay the 'convenience fees'\n\n Did this such kind of rule always existed? If it does, it really puts a question on lack of options for the consumer. First not being able to get paper tickets and having to give your phone number to get them, to now to being able to book tickets offline.
440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I'm looking for a pocket friendly good, decent enough vegan protein powder. I've come up with two to three brands. Which one is the best option? If you know any other brand, please suggest me in the comments. Thank you for your time. \n1. Mypro sports nutrition plant protein powder \n2. Spark fusion vegan plant protein \n3. Myherb plant protein powder
441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So I had few funds, I'm planning to create a Fixed Deposit. \n\nI have account in SBI bank and it offers 7.1 % for 400 days (\\~13 months). I see an option called "auto renew at maturity", how does that work ?   \n\n\n1. What happens to the interest when the duration of 400 days is over ? \n2. at what interest rate will it auto renew ? the rate at which it was first deposited ? or the rate at that time ? \n3. I heard that banks deduct charges if I withdraw prematurely, suppose I deposit 10k and I withdraw the next day. will I be charged 1% and I'll get 9,900 only ? \n4. What if I withdraw after 410 days ? will that 1% charged on whole amount ? or only on "new amount" ? \n\n&amp;#x200B;\n\nThanks for your time answering or reading this :) 
442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I  have been struggling with adhd and mdd since a long time and i can't consult a psychologists due to various reasons like my parents telling me that these results of my laziness. Things are getting so worse and I feeling really depressed and suicidal
443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It seems that based on what we hear via the Indian govt channels India is going for the moon, fastest growing GDP, huge young population, growing middle class, care for farmers, poor people..etc. we also get to hear that India is on its way to being a super power, if you hear the govt speak. However more than ever Indians are leaving the country and most of them are young people. Canada has taken a brunt of it. To the point that people are openly are talking about stopping too many Indians coming here.. or rather people from one country dominating immigration. Anyways there are not many jobs here and most newcomers will work in odd, labor jobs for a very long time! Just wondering why are so many people abandoning India?
444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Livspace is a huge fraud they are not returning my money neither starting work.\nThey took 117000inr as booking amount.\n\nIt\031s been 2- 3 months, every time they come visit our home they extend the budget, add some random charges, then say about the most basic things that this wasn\031t included, that wasn\031t included then again increase money..\n\nI told them I don\031t have this much budget. Now they are saying they won\031t refund my money or do the work for money I\031ve already paid..\n\nIs there anything I can do? Plz help
446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I am applying for an OCI card in Washington DC and have the following questions\n\n1. how to mail the application form - can it be USPS or other courier services?\n2. Do I need to include a prepaid envelope and if yes,  what type of envelope?
447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Can you please suggest slightly premium brands like Bath and Body Works. It should be not extremely costly, in the price range of B&amp;BW but a little less known, but known for its exquisite quality. Emphasis on quality as the person I'm gifting is very particular on these things.\n\nGifting a girl as a guy, so please help a dude out fellow redditors.
448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mostly, I'm stuck on the USvisa scheduling website. What is even this website? Pages freeze, cant update, payment page doesnt show who the applicants are to confirm, applicant bar doesnt show who the applicant is. I made my father as the main applicant, added my mother as the dependent, but on the payment page it says there is only one applicant whose name I can't see. This means my mother couldn't be added?! I can't update information on my mother's visa options page because the drop downs are not working (tried 4-5 times in different places). Save meeee please.
450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I have a Hyundai i20 sportz. For the rear mirror, it has a defogger embedded in the glass itself and it works fairly fine. However, for the front glass whenever I try to turn on the defogger it tunes the blower and AC to a particular setting and it never works. So, what I do instead is try to balance the inside temperature with the outside one. This works but sometimes it doesn't. So wanted to check with others here on Reddit. What is your way of fixing fog on the windshield?\n\nWhenever I fail to clear the fog as a last resort I try the following (which is inconvenient sometimes):\n\n1. Slide down the driver-side and passenger-side glass a little and let the outside air come in.\n2. The above and/or open the air duct for the blower to take in outside air. And set the blower's direction on the windshield.
451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hi everyone! Please help fill this google forms questionnaire on "Regrets in Human life" for a class 12th english project. It is a short google form containing four sections.\n\nIf you feel that you possess appropriate experience for the form, please help by responding. Your responses will be anonymous (only basic demographics are required)\n\nThank youu!\n\nAlso, someone pls suggest an appropriate flair for this?
453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  has anyone ever won the book-giveaway that penguin India hosts quite frequently on their twitter handle? or is it just a gimmick to increase their reach?
454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What you all think  which side is favoured by chine?\n and why?
456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So a few days ago I brought 4 packs of Masala ae magic from a local shop (hated the shopkeeper). I had been buying it for years from him so I just took the pack, gave him the twenty and left. After a couple days my mother decide to use 1 pack to make some aloo sabzi. It felt different but I just thought my mother probably changed something. Another pack was used to make maggi for my brother. Then i decided to also make some maggi with the masala ae magic (tastes better than normal ;) ) But I always have a habit of eating some masala, but as soon as the masala touched my tongue i felt the texture was off and the taste was fowl, almost like 3 days old chapati. So i taste a bit more, and spit it out due to the horrendous taste. At this point I decide to throw the maggi out (had put the masala). I thought it to be a fluke so opened the last pack and it was the same. At this point I started to check the 2 remaining packs, they looked fine. So i called the nestle care number, after 30 seconds I was on the line with their representative. I told him my issue and he took some basic info, (I lied ofc, not willing to give my real name), he told me to email him the back of the packs. I did after three days I recieve a call from nestle asking me my location, I told them my colony and met with them the next day at the gate, their were two guys, they took my packet, checked it, told me its duplicate, gave me 2 packs and 2 extra packs of the masala for my troubles :). Asked me where I had bought it from and I promptly told them the shop, they proceeded to grill the shop owner for an hour and raided his shop. They found alot of duplicate stuff and told him something about cancelling food license idk. Will call them tommorow to see what they did.\n\n5/5, would 100% recommend Nestle support. I didnt think this would go so smoothly considering their shady past.
457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Im planning on asking this in as many other country subreddits as possible to take a look into what expenses are like for the average person.\035 Why not Google it?\035 Is a great question but google\031s top search results are sometimes inaccurate, and more often than not, the people who\031ve written the articles are usually detached from the average person\031s society and are living in delulu land (aka \034stop drinking coffee from outside everyday and you\031ll have ___ much money saved!!\035 As if that\031ll help.)\n\nI\031m starting with India since I did a Google search and it said something along the lines of 30k rupees is average monthly salary but I found out that was incorrect and that salary is not enough to cover monthly expenses. That had me thinking I\031d like to learn more what expenses are like for the average person
458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \nI'm a 23 years old hard of hearing person, navigating day-to-day interactions often feels overwhelming. The constant worry about missing out on conversations or crucial information  impacts my confidence and triggers  anxiety about the future.\nAlso I get potential job related communication challenges which put me in overthinking mode. \nIt can get quite tough to live in the moment and not worry about the hearing loss. In addition to that, my speech is also getting affected which further hampers my communication. It's giving me depression.
463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Please suggest resources that are comprehensive and detail the theory etc pretty well so I can soon picking up notes from any music on my own.
464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hello everyone, I work at an NGO run secondary school in Mundhwa, Pune. We run schools from Grades 8-10 and with support from the Government and private organisations. We had a teacher quit in the middle of the year, leaving us with no English teacher for Grade 9. Since we are already understaffed, I am looking for a volunteer who will be able to contribute 1-2 hours a day for 4-5 days a week. Our school runs from 8am to 4pm so we'll be able to adjust our classes to the volunteer's preferred timing. Perks include a volunteer certificate, our immeasurable gratitude and a bunch of students who will make you feel like the most special person in the world.
465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you have any old coins or collection please do post on r/oldcoinsindia .
466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I (24M) graduated this year with degree in B.Tech CSE tier3 college. Got a TCS Ninja offer in December 2022 but they haven't asked to join yet and HR is ghosting completely. Depressed and unsure what to do? Start learning data analytics tools and thinking of learning video editing for freelancing. Where do I look for job as fresher as everywhere they ask for experience? It feels like I have wasted my life. \n\nThe gap between college knowledge and industry requirements is so huge that it seems impossible to fill and as idle time piles up, it would further dent my career for any opportunity. So frustrated with government and TCS with the way things going.
469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I was reading about India\031s administrative divisions and realized how wide ranged their populations are. There\031s states with couple hundred thousand inhabitants and then there\031s gigantic 100 million states and even a 200 million, Uttar Pradesh. Then I checked if they are divided by language but that does not seem to be the case, and India is so diverse anyways that it would be impossible to do that. So I was thinkingwhy aren\031t they divided by population? Don\031t the big states like Uttar Pradesh and Bihar have an overrepresentation in their say in the politics of the whole country?
475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I reside in the US and visiting India shortly. I will use a data-only eSIM for my iPhone to get cellular data service but this does not provide a local +91 number. But Ola does allow setting up a new account with a US +1 mobile number and email. I did this but when I look at Payment Method, Cash is the only option. I don't see Apple Pay or credit card option\n\nAm I missing something? How to add other payment options?
476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      My(22M) girlfriend\031s(22F) birthday is coming up later this month. What should I gift her?\n\nI thought about sending her a silver necklace/pendant, flowers, cake, a letter and a few customised photos. Please let me know if you have any cute ideas/siggestions.. \n\nI am looking for online platforms that provide a gifting service. My budget is about 4000rs. Help me out guys. Thank you.
477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hey everyone.... currently I'm 27 and a CMA Finalist, I completed my articleship in 2020 and since then I've been unemployed. The 1st year was because of the pandemic, but after then I don't know what happened....I just felt lost... couldn't really focus on studies and got depressed. Some of friends already got their degrees in the meantime...this made me feel like failure. Now, after a lot of work on my mental health, I am finally ready to give the final exams this sunday. I just don't know what my career prospects are going to be if I clear the exams...will I get hired anywhere. Please give any advice you can.
478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What positive changes have North Indians seen since 2014? Cause in my opinion I have seen nothing positive yet. People have been on roads since demonitization, CAA/NRC, farmers protests against the three laws, students protests, COVID 19, ramdev fiasco, agniveer protests, hate speeches, fuel prices crossing 100, cylinder prices crossing 1000, media being like a govt. mouthpiece and many more unpleasant examples in a civilised society.\n\nI want to understand the positives that people still see amongst all the things I listed. Are there any educational or health or job reforms that have benefited the citizens that I don't know of? Keep religion aside, What do people see that I fail to see in this govt? Do people really want to put everything else at stake just to see just a man of their personal faith attain power? Do we want to become a land of zombies who act without any sort of analysis and critique? Well defined Scientic theories are being dropped from text books. Tomorrow, they could challenge biology, math, astrophysics. Don't you think that's damaging for our children? There may be some pragmatic positives that North Indians are seeing since 2014, which I cannot.
479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I\031m 17 and finally got my first job. My mom\031s birthday is in two weeks, Christmas is soon, and my parents\031 anniversary is Jan 5th.\n\nI\031m looking for some ideas on what to get my parents. Nothing too expensive because I don\031t have a lot of money but I want to get them something they\031d actually enjoy/use. \n\nAlso related to the topic: my older cousin is coming to America for the first time this month. Any ideas for a gift I could get her?
480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
481                                                                                                                                                                                                                            TLDR at bottom, but the complete post has more context. Apologies for the long post but I tried to make it short without losing any info\n\nThe background  \n\\-------------------------\n\nI (29, M), working in tech, and earning quite well. I met a girl through a matrimony site (her mother managing it), and spoke a few times, but I realized it was me initiating the convo always so I kind of stopped doing that for a few months, because there were other girls I was talking to who were equally involved in the conversation.\n\nBut after some time I realized it wasn't going well, so I initiated a conversation again and she also said yes let's talk over a call/video call. We did this a couple of times and decided to meet one evening as she was visiting my city for work.   \nWe had a good time, she looked happy, wasn't letting go off my hand when I dropped her back. I liked her too but didn't want to go overboard with anything and decided to understand my feelings over some time.\n\nNow she was much active in initiating conversations, kept sharing about her day, she told her mom she liked me (something which I didn't know about), and she even said that she kept thinking about me, and after getting drunk she said the same thing and also said she's afraid that she doesn't get hurt. I told her it's absolutely fine having any feeling and that she shouldn't suppress it and let it be, and see where it goes. I told her that a lot of things throughout the day reminded me of her. She would give me cute nick names, call me asking about things, helping her decide what to buy, sharing her pictures etc.\n\nShe wanted me to come to her city after a few weeks to meet, and wanted me to stay for few days. Before the visit, she again dropped back to not being super sharing on WhatsApp. So I was always left wondering what she feels about me. We met in her city, had a good time, she even stayed at my hotel, but we didn't do anything apart from just sleeping next to each other because I wanted to keep it absolutely clear until I knew how I feel about her and didn't want to give a wrong impression or hurt her feelings. We both talked about our families and other personal stuff, she was her vulnerable self and shared about the problems in her family as well.\n\nThe Twist  \n\\---------------\n\nShe was getting calls from her mom/relatives on the second both days, and I thought it's just usual. But on second day I sensed it's something, so I asked her, and after saying it's nothing, she explained later that there's a guy whose family has been talking with her family, and they keep asking her dad about finalizing things.  \nHer mom called me next day and told me the same, asking to speak to my parents or telling her how I feel about the girl. As so far I was under the impression that no such deadline existed and it was just me and her talking and getting to know each other, I told her I liked the girl, but I want to speak to her 1-2 times about a few things (the serious stuff, goals, career, and some issues). And she agreed.\n\nBut I couldn't discuss it with the girl, because of her work/review over a week which had her working till late. So I thought I'll talk about it once it's done. A day after that, I was feeling restless not seeing a message from her till evening and I messaged her that I wanted to talk, turns out her father informed her saying that they're saying yes for the other guy, and she said okay to it.\n\nI was shattered, I told her how I've been thinking about her since I met her, and had feelings for her. She started crying and said she felt I didn't  have any feelings and hence gave in to the pressure and didn't want me to end the call, she said if I'll talk to her mom about it. I told her don't jump around like this, give it a thought and let me know and I'll manage everything else.  \nNext day her mom also called me giving me the sad news, and they had already given a soft yes to them and because they felt no involvement was there from my parents yet, they said yes to them (they had met the other family earlier). In my defence, I would've involved my family had I known the situation was like this, and I was only waiting to be fully sure about someone before involving my parents. All of this happened within a week of me meeting her in her city.\n\nAfter this the girl and I kept talking where she told me the soft yes was actually a Roka (even before meeting me first time) and because she found the guy okay. I told her why isn't she thinking about what she feels instead of just agreeing to whoever said yes first.\n\nCurrent situation  \n\\--------------------------\n\nAfter 1-2 months,, we were still talking here and there. I had my parents speak to hers, because I wanted to give all I could. They gave the same reasons, and told she's getting engaged next month.  \n\n\nI thought I'll meet her in her city once and make it work, she said don't come because she's not single and can't meet me, and that it'll complicate things for her. So I missed my flight deliberately. She says she has feelings for the other guy ( and I'm wondering if there's a choice for her at this point), and doesn't have any feelings for me. But I sense that she's just suppressing it, so that I don't act and make it complicated for her.  \nAfter that, I've deleted her number, telling her I don't want any other relation apart from what we were in this for. She hasn't, she removed me from her insta, but keeps following me.  \nShe calls me asking why I didn't wish her on her birthday (of course I remembered it). The same day she called me 5-6 times at 3 in the night, while I was asleep, and next day she told she called me as she wasn't feeling good. The other guy is in US, why isn't she calling him?\n\nShe still sometimes keeps sharing her pictures. When we have a call, she doesn't want to end it, doesn't want to say goodbye.\n\nI keep thinking about her, and any other girl I talk to, I feel a sense of emptiness. I found myself truly attracted to her. I don't know what to do, I'm unable to understand this girl and what she intended to do. I've been pretty chill with such interactions and the only time I became vulnerable, it's ended up like this.  \nI feel like I messed up by not acting fast enough, but then I had no idea about what was going on at her side, and before I could understand it all, it all went away.\n\nAFAIK, she wasn't particular about money or a certain lifestyle (she does it all with her own money), and isn't particularly looking to move abroad.\n\nTLDR  \n\\--------\n\nMet a girl through matrimony, she was rokafied already(which she didn't  tell me) but we met with her parents knowledge, and she confessed she had feelings for me. Meeting again I developed feelings for her too but before I could understand anything her parents confirmed everything with the other girl(whose family they had met), saying that they didn't get a confirmation from my end.\n\nNow I'm left wondering what the hell happened, girl is about to get engaged and seems like she has feelings for me but doesn't want to mess up the whole thing. Still wants to keep talking, and says she can be herself completely around me. But on the other hand she says she doesn't have any feelings for me, and I'm left wondering if she's saying the truth or just holding back to not complicate anything now.
482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Didn't get much help in other subs so asking here. Mods, if you feel this is irrelevant to this sub then do remove it. Thanks!\n\nmyquals - BTech Computer Science\n\nA little background about myself. So I am currently working at an IB in a finance back office role(Valuations) for the past 1.5 years. I have recently gotten a job offer for the same role to switch and they have offered me a CTC of ~20 LPA(50% hike) which I am considering at the moment. From a financial perspective its great and if at somepoint in the future if I were to switch again this will be the benchmark for negotiation. \n\nNow coming to the problem, my parents feel I should be pursuing another specialization degree sooner than later in life and I agree with them. But on the other hand how much monetary value will it add to my resume given that I am already at this pay scale? From a knowledge perspective it absolutely makes sense since I am still a noob in this field but at the same time the uncertainty of cracking exams, the overall hustle and the complacency when you start earning is not helping me at all.\n\nThere are few courses which I have shortlisted in the past and started prep but gave up after a few weeks. MBA/CAT, PGDBA(ISI), CFA, FRM, MSQE(ISI), M. Stat (ISI) have interested me at somepoint but I think I will need to focus on one particular thing than juggling all at once since it looks like its all over the place.\n\nI personally have never had any ambitions or goals in my life. Everything in my life just happened one way or another and seems like I was naturally good at most things in school and professional life. I mean I was lucky to get my current job and I was in no way expecting to get another offer. \n\nLately I have been interested in Quantitative roles but I doubt my Mathematics ability is that exceptional to crack it. But I do feel I need a realistic outlook to things and I would be really grateful if anyone could offer me some guidance as to how I can move forward in life as I don't want to stagnate at a certain point.
483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So as the title says, I\031m looking for people who are interested in skiing in Gulmarg from 22nd Dec.\n\nAbout me- i am a college student who love to travel and looking for someone who shares the same passion.\n\nDm me if you are interested.\nThank you
484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               My father have 1 proporty  in kochi, been trying to sell it, bought it expecting a good return before 5 years. It seems these are the worst kind of investment in terms of liquidity and price.\nAlso been told there are plenty of empty properties available,hence cannot expect a good return.\n\nI don't know much about real estate, but selling it seems like a hassle that i cannot understand.and you don't get money when in times of need.\n\nSorry about my rant.
485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I just finished watching some documentaries on Indians working abroad in UAE, Qatar, and other places in the Middle East and it seems that a majority of the workers being exploited in slave-like conditions are from India. \n\nThe thing that I found weird is that it's Western docuseries that are bringing attention to this while I have yet to see Indian Journalists and politicians make more of an Issue of it.\n\nWhy is this?  Does India not care about its citizens being exploited abroad? \n\nOr is this not the case and I'm not looking in the right areas for the material?\n\n&amp;#x200B;
486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our current generation is influenced by characters like Kabir Singh, Rocky bhai (KGF) and Ranvijay Singh (Animal). People are becoming aggressive while talking and swearing because it is being glorified in movies. \n\nHow appropriate is this? What is your thoughts?\n\nPS: I'm not trying to say these movies are not good.
487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I try to stay left leaning as majority of liberal arts University (esp Delhi) educated youth are but I can\031t help but see the changes in the lives of people with my own eyes. \n I know that BJP had has lots of problems but they have brought about change. In a country like India where everything and every stanch you take is polarising one way or another, I like what BJP stands for. Country first, no matter what. \n\nI know a lot, a lot of people who support BJP. Majority are people like me, educated and working . But I have seen what I\031d like to call \030pseudo intellectuals\031 who have a liberal arts degree talking about the present govt as though it is the worst thing to happen on Earth. And they are jobless usually. \nWhat are your thoughts? \nDo you see a certain group of people being left leaning and right leaning ??
488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is the only type m to type f adapter I can find online or locally. Senms a lot for just one adapter. Anyone else make one?\n\n[https://www.amazon.com/Ceptics-SA-EU-Africa-Grounded-Adapter/dp/B01DVG2SE0/ref=asc\\_df\\_B01DVG2SE0/?tag=hyprod-20&amp;linkCode=df0&amp;hvadid=194024095585&amp;hvpos=&amp;hvnetw=g&amp;hvrand=8610232027782459903&amp;hvpone=&amp;hvptwo=&amp;hvqmt=&amp;hvdev=m&amp;hvdvcmdl=&amp;hvlocint=&amp;hvlocphy=1016503&amp;hvtargid=pla-314762797168&amp;psc=1&amp;mcid=32728b62cdcb3d9488e7ce24c5ab9566&amp;gclid=Cj0KCQiA67CrBhC1ARIsACKAa8TZIvNSV-m0Ep-8m8P7bcBql-KyBqgBP\\_EcIJHO9a3Bq27FVhGZWvYaAqeHEALw\\_wcB](https://www.amazon.com/Ceptics-SA-EU-Africa-Grounded-Adapter/dp/B01DVG2SE0/ref=asc_df_B01DVG2SE0/?tag=hyprod-20&amp;linkCode=df0&amp;hvadid=194024095585&amp;hvpos=&amp;hvnetw=g&amp;hvrand=8610232027782459903&amp;hvpone=&amp;hvptwo=&amp;hvqmt=&amp;hvdev=m&amp;hvdvcmdl=&amp;hvlocint=&amp;hvlocphy=1016503&amp;hvtargid=pla-314762797168&amp;psc=1&amp;mcid=32728b62cdcb3d9488e7ce24c5ab9566&amp;gclid=Cj0KCQiA67CrBhC1ARIsACKAa8TZIvNSV-m0Ep-8m8P7bcBql-KyBqgBP_EcIJHO9a3Bq27FVhGZWvYaAqeHEALw_wcB)
496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n\nDue to the policies of the Chinese government, most of the news I heard about India during my childhood was predominantly negative. This has led to the misconception among many Chinese people today that India still adheres to the caste system. As I grew up and learned to use VPN to access the international internet, I was surprised to find that even Western media extensively reports negative news about India. Many of the negative news about India that I previously thought originated from the Chinese government were actually reprints of Western media.\n\nI understand that India has many issues, and it is good that these problems receive attention. However, based on my personal experience, the level of attention given to India's issues far exceeds what would be considered normal.\n\nFor example, while India does have issues concerning women, the situation in Pakistan is evidently worse but has never received an equivalent level of attention. India has some racial and religious issues, but most conflicts can only be described as riots and are generally within manageable limits. Yet, Modi is portrayed as the Hitler of South Asia. Meanwhile, Turkey's Erdogan has destroyed hundreds of Kurdish villages, and Azerbaijan's Aliyev has expelled tens of thousands of Armenians. However, these two leaders have never received the same level of attention from the mainstream media as Modi.\n\nFurthermore, the Chinese government has imprisoned millions of Uighurs, and Indonesia and Malaysia blatantly enshrine discrimination against minority groups and non-Muslims in their constitutions. Yet, these issues have never received sufficient exposure compared to the problems in India.\n\nPossible reasons for these issues could include:\n\n1. During the Cold War, Pakistan was an ally of the West, while India kept its distance. As a result, Western mainstream media has consistently favored Pakistan's narrative, a situation that only began to change during the Bangladesh Liberation War.\n2. The Chinese government has employed an extensive propaganda machine for public opinion warfare. Many media outlets have been compromised, and exaggerating negative news about India is just one part of these propaganda efforts.\n3. India's major adversaries \023 China, Pakistan, Turkey \023 either lack press freedom, are gradually slipping into authoritarian rule, or are experiencing a comprehensive breakdown of their news systems. While democratic India does have some news control, but it is challenging to directly manipulate the news, leading to exposure of negative news. In contrast, negative news about India's adversaries is often covered up.\n\n 
497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The kitchenware seem so cool and pretty but it becomes very expensive as you start buying them.\n\nHave you found any alternatives to these stores that do shipping?
498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hello, I'm currently in college. I would love to do anything that involves teaching or writing as I'm a MSc Physics student and it's something I am decent at. But everything I've checked out so far requires a degree of some sort.  I want to have a few sources of income so that I can pay my fees and not depend on my family. Are there any potential employers over here?
499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I tried all the online ways to do Aadhaar seeding. That too from 3 different banks, SBI, CBI and PNB.\n\nNone are working.\n\nI read that Aadhaar seeding is important to get scholarship, money from government schemes, etc to your bank account. Your Aadhar can be linked to multiple bank accounts but only one of them will be identified as your primary bank account to get money in the above mentioned cases.\n\nI wonder if it's done to prevent scam of money withdrawal using Aadhaar number and fingerprints. Because unlocked biometrics and seeded aadhaar are mandatory for that. I wish they gave a seperate permission flag for money withdrawal.\n\nI even went to a bank and they had no clue about this seeding. Typical.\n\nDoes anyone of you know, why can't I seed my Aadhaar to my bank account right now? It's been more than 2 weeks. I try daily.
500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Guys, Please suggest. \n\ni live in a small village in southern part of india, and currently we are using pick up and delivery services for our water needs, which is not ideal in a lot of scenario's so thinking of installing a water purifier. \n\nI did ask my friends and relatives, they are using some lcoal brands. which are expensive and quality of construct is really bad.  while i am hearing Aquaguard and such known brands don't have proper services in remote areas. Pureit Straight away said we don't serve in your location. \n\nI got know living in metros that for water purifier aftersales servies are very essential for its upkeep.  please suggest if i can do something better. or should i got for Eureka or such known brands. \n\nThanks in advance any idea is appriciated
501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If marriage lasts only for 15 days followed by separation (as per mutual divorce petition, actual period together may be around 6 month), what implication does that have on the groom for future marriage? What may be the possible reason that people may think caused the separation, knowing that the marriage lasted for such short period. Will it become a big issue during second marriage? Please note that I only want to know people's thoughts and my question has no relation to the actual cause of separation or the character of the people involved.
503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I'm not trying to win a logical argument here. I'm probably wrong about many of these things, im just venting. So take this as that. \n\nAfter today's election stuff, it somehow feels that the only way to have a peaceful life is to leave this country. We are sitting at 100rs petrol and 180rs Dal. Everything costs what too much and it doesn't look like things are gonna change for the better any time soon. And people don't have a problem with it. If I land a well paying job, the govt takes a third of my earning even before I get to see it. And then take another 20% as gst from everything I spend on. What are we getting in return? \n\nI was talking to a friend the other day who is a BJP supporter. He was one of the smartest people I know and he has no problem admitting that he doesn't care about other peoples welfare. He is from UP. His life is better than ever before and if other states are having problems, they can go screw themselves. He appreciates the bulldozer culture and is happy with the Bharat-dhanvanthari fiasco. He is cool with ncrt textbooks being filled with bullshit. As long as his state feels better, others can die for all he cares. He wants us to stick to our "civilizational" roots. \n\nI wonder why people think that India or Bharat was always a thing. We are a union of states.As far as I understand, there is not much in common with someone from say TN and MP. Except for the fact that we fought the britishers together and the Idea of Indian Union.  I know India is also called Bharat, but I never called it that. If you wanna call it that, sure, go ahead. I'm my tongue, it is Bharatham and and not Bharat. But sure call it whatever you want. But why force me? Why force me to learn Hindi? People in this country don't even speak the same language or eat the same food or worship the same gods. There is more differences than commonalities between most states. \n\nThe other day, in Kerala, there was this child kidnapping case. A group of people trashed a mans house because his face looked similar to a sketch and his name being Shajahan. Kerala is the least likely place for such things to happen in this country and If this shit can happen in Kerala, we must understand how bad things are everywhere else. \n\nI'm just sad and feeling hopeless about my tomorrows. There is not much distance from where we are and total authoritarianism. People are telling us openly that individual liberty has no value here. The state is supreme and we are all insignificant. Even if Congress  is absolutely terrible, what good is this one sided show going to bring to us? Do we wait to see shit hit the fan or do we leave as soon as possible? Is there hope? It feels like with every passing day, I am losing control of my own life. People who have nothing to do with me are deciding how my life should be. I feel no hope.  I feel that I must leave before it's too late. Please tell me that I wrong....
505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I've thought of doing a trip throughout NE India before but had a friend explain to me that I need a RAP to enter Arunachal Pradesh, Mizoram, Nagaland, Sikkim, and other parts of NE India. Is it hard to obtain these papers and what process would I look into to obtain these papers before travelling?
507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I use a credit card for most of my expenses but don't feel like I'm getting the best deals from my current cards.   \n\n\nI currently use:   \n1) HDFC Millenia - I was mosty using this for the complimentary lounge access, but now HDFC has added a minimum spends for lounge access. \n\n2) Kotak League Platinum Visa - Got this during account creation, pretty basic doesn't really do much.   \n\n\nSo, India what credit cards are you guys using that provide the best cashback/deals, lounge access, the perks etc.
508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I received a challan message (for triple riding) on my bike no. 1 year ago. When I opened the link in the message and it was some other vehicle. I tried raising a dispute at the Traffic police Site but it was rejected.\nToday I received a Lok Adalat Settlement notice which asks me to be present in the Court which is in other city at around 250 kms distance.\nWhat options do I have ?
509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hi\n\nI'll be traveling from the UK to India for the winter. As a student, I need to finish a part of my coursework over the winter that needs me to use an electronics kit and oscilloscope. I have kept them in my check in bag. Would this be a hassle at customs? \n\nMy electronics kit contains\nAmplifiers\nSensors\nMisc ICs\nResistors \nPotentiometers \nCapactiors\nTransistors \nLEDs\nDiodes \nInductors \nJumper wires\nBreadboard\nScrew driver \nBuzzer\n\nI am using picoscope 7 as my oscilloscope. That contains 2 probes and one AWG.
510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Almost 20 years ago, we had a burglary at our home. I believe my Dad filed an FIR at that time, and it had a list of items that were lost. I am not sure about other specifics, but I know the police station where it was filed and the year it happened. Is there a way to find the FIR?
511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I see females can easily carry all of their stuff in one hand bag. But for males, it is so hard to carry around keys, wallet, mobile, etc. Especially when getting in and out of the vehicle. Also, you have to constantly tap to check if anything has fallen out. I wish they were not such a taboo for men.\n\n#Hand Bag\n\n\nP.S. I also carry a laptop bag sometimes but it seems overkill when there is not much to carry. And laptop bag is too big as compared to hand bags.
512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So I'm 20 years old and I was looking for some credit card options that I am eligible to get, I am looking for ones which I would get without an FD, I have a CiBiL score of 750+ and have been paying all my loans and pay later things on correct time, as I'm not a salaried individual is there anyway I can get a CC without FD, I don't mind if the limit relatively less and I would like to know what all options i have, I am looking forward to apply once I'm 21 as my Credit Score would be even better by then. Kindly help me out!
513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hi! I'm from Kerala, currently studying in Hyderabad and will most probably be working in a Hindi speaking state within a year or so. So I want to be able to speak Hindi. To give you an idea of where I stand right now, I can understand conversational Hindi decently because a lot of my friends speak it but I always have to reply in English, and I can read Hindi really well too, almost native level. Speaking is the hard part, because I just don't have the vocabulary to construct any complex sentences besides basic phrases. How do I go about becoming fluent? And any suggestions for movies, shows that could help in the process?
514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A friend of mine said  a lot of youtubers who earn in crores set up their youtube channel as business and expense everything and show little profit and pay bare minimum tax.  \n\nIs it true. If someone made  crores from youtube  how much taxes they would pay ? How do they save majority of it ?
517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When I say vegan, you will get this image that I am arrogant and aggressive because that is the image we have from reading social media articles about western Vegans protesting etc. So please read this with relaxed mind.\n\nOn reddit itself, western people say that Non veg diet is cheaper for them than the vegan diet. They don't know how to cook vegan food. They think vegan means eating rice bean or lettuce. Since I am Indian I will only talk about India.\n\nRoti, sabzi, chawal, daal, chhola bhatura, pudi, idli, dosa, samosa. Do Indians really lack Vegan options? Replace ghee with oil wherever needed. I think that India can be heaven for Vegans.\n\nSecondly, the claim that Vegan diet is costly in India seems like people who say that are out of touch with reality. Go to any mandi or restaurant, vegetables are always cheaper than chicken or meat. Always. The rules are reversed in here. Being vegan is more affordable than eating non veg.\n\nLastly, not getting vitamins and nutrients from vegan diet is again something confusing. Plants, grains and fruits are capable of giving us nutrition all we need. Eating non veg and getting nutrients are not correlated! It differs case by case. Do we think that a non veg eater will never need to take vitamin tablets or never lack in essentials or never have to go to doctor? Ironically even the idiom says "An apple a day keeps the doctor away". Is it really that simple for every single non veg eater? Some people are chain smokers but never get cancer. Some smoke once in a while and get cancer. How can we make absolute claims about something as unpredictable as human body and health?\n\nI think that one needs a strong enough reason to make them change their diet plan and way of life looking at all lives including animals and fish and birds.\n\nPleasure is something addictive. It is hard to change. Once the meat is served in plate, it becomes just a food, it was not a life, it was no more alive than table or chair. Addictions are hard to break especially when it seems that people in one's social circle are also doing the same thing. If one changes their way of life, they will be ridiculed and outcast. Pleasure of senses is hard to change. Imagine you're asked to never smile. Pleasure keeps us alive, it makes life worth living. I think that is why people keep eating non veg and find it hard to quit. In addition, we are so accustomed to movies and TV and social media and just living in a society that we are so detached from negative emotions like suffering, pain, guilt, helplessness, hopelessness, submissiveness. If we were connected to our emotions, we could empathize with every living being that feels these emotions. And perhaps sometimes people find it hard to connect to animals because they don't look like humans and we are accustomed to mirror other humans and human like figures. And lastly perhaps, not eating non veg is not just about diet but about our personality and every aspect of our lives, how we behave, how we relate to our family, how we present ourselves in world and it is just too much to think about or too many things to change in life if one starts looking at non veg with its emotional aspect before death. It is hard to accept that perhaps the emotions we feel for our close people is not for them but for ourselves as connected to them and every time I say I love you to someone, it is about my own narcissism and not about the actual person. Who will stand up and say Yes I am a narcissist, I recognize it in myself and it is my responsibility to accept it and become whatever is the opposite of narcissism? \n\nSo, do you think that an Indian who says that being vegan is expensive or there is nothing to eat is copying a western person? I think yes.
518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When viewing election results at results.eci.gov.in, the data doesnt seem up to date with the news channels.\nNews channels always show data long before the ECI website does.
519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Greetings!\n\n**MODS: If this post is in the wrong section, please move it to the right one.**\n\nI'm from Rawalakot, and I've been searching for information about my family lineage. Upon visiting the patwari in my village, I discovered that only a few names are recorded on the family tree, up to my great-grandfather. The remaining names are documented in records kept by patwari in the Jammu region. As the partition divided the Poonch region, I am unable to approach them.\n\nCould you advise me on how to reach out to the patwari in the Jammu region or provide any email or contact details? Any assistance would be greatly appreciated.\n\nBTW, we are Chauhans. If you are a fellow Chauhan, your assistance would be immensely valuable.\n\nThank you!
522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So, I have two members of my family want to invest but they lack knowledge. I have basic clear but how do I invest their money through my account without mixing their money if I have to make some common investment with different amount? Is there any way to do so?
523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Due to some restrictions, I can only open a payments bank account which I need for daily use UPI, Debit Card etc. Don't want the hassle of an offline branch, so **no** normal savings account. Kotak is not available at my address, so can't open them.\n\nThese are my requirements:\n\n1. Need a Visa/Mastercard virtual card.\n2. Should have good uptime, digital services &amp; ease of use.\n3. The overall experience should be good.\n4. Preferably zero balance.
524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hey everyone! =K<û\nToday I was booking a cab on Ola to go meet my friends. I booked the cab and then called the driver to confirm my pickup.\n\nWithin just 3 minutes, I received a call from an unknown number. When I picked up, a man started to tell me that he is my driver and he is coming to my location. I was confused as I had just spoken to the driver from the number provided in the Ola app. This fraud then asked me to give him my exact pick-up address. I told him I just told you minutes ago and confirmed my pickup. I also remember thinking that the driver had sounded older but this fraudulent driver sounded younger and different. He started insisting again that I should give him my address. \n\nI told this guy that I have given the exact pick-up address on Ola app as I live in a well-known area so he can come and pick me up. At this point, he started to ABUSE me saying that I am being rude to him and I should give him my exact address. This is how I knew something was wrong because I realized that he had NO IDEA about where I lived. I cut the call because I was shook with his behaviour. \n\nI felt something was off and immediately checked his number on Truecaller. He was listed as "Ola Fraud". This man has hacked into Ola server and gets customer details LIVE so he can contact us. I am sure he is part of a group of people who do this in other cities.\n\nDo you know what the worst part is? >\024=G<û\n\nThe original driver who I talked with and Ola had given me notifications that he was coming to pick me up- his details completely vanished from my account.\n\nWhen I went to the app to cancel the ride, the driver details were not mentioned anymore. This means that the app is hacked in real-time and their data is erased from Ola server so it can not be traced back!\n\nAs a woman, I am extremely concerned about my safety and I am shocked that Ola is not being responsible with our information. I have deleted my account in Ola because I don't want random people to have access to my number. I have also tweeted to Ola with these images and I am waiting for them to reply back. Please beware before using Ola!\n\n&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n\nEdit to answer some FAQ\031s =G<û\n\nQ: How do you know it\031s a scam?\n\nA: You can see multiple comments under my post from people especially females who have faced this EXACT issue in different cities across India especially last month.\n\nThe reason I think it\031s a scam is because my information was shared in exactly 3 minutes and I received the fraudulent call. This fraudulent driver called me AFTER I talked with my designated driver demanding me to reveal my location to him. He had no idea where I lived which is how I first realized that something was wrong. \n\n=I<û I cut the call and checked his number on Truecaller. I saw 80 complaints registered against the number which means this fraudulent caller has been doing this scam for a while.\n\nNow if this is happening in other cities, it means there is a data breach somewhere which in turn means that strangers are getting our numbers in real-time without our consent when we use Ola.\n\nQ: Have you complained to Ola?\n\nA: Yes, I have complained to Ola and I have also tweeted the same. I am yet to receive a reply from them. I will definitely update if I receive any response. \n\nQ: What would the scammer gain from this?\n\nA: Well desperate times call for desperate actions!\nEveryday scams are happening in India regardless of how small or big it is. \n\nFrom what I have gathered from other people who have faced this EXACT issue: Once customer sits inside their car, they ask for exorbitant rates and misbehave with them if they can\031t pay up. If you are a female, you will obviously think about your safety first and pay them whatever they want so you can get out of the cab. Later when you will go to the Ola app to register a complain, you will realize that the driver details are not displayed in your account which means you can\031t even hold Ola liable at that time so please be careful! 
525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I am planning to port my health insurance from Royal Sundaram General Insurance Co. Ltd. to HDFC Ergo Optima Secure. The primary reason is that renewal is a hassle, as Royal Sundaram's online portal does not work for my policy. Every time, I have to call their customer care and explain everything, they send a link for payment after four or five calls, but never send the policy document after payment until I submit a complaint to the insurance ombudsman. In addition, the claim process is a hassle. I have had to wait 6\0237 hrs after the hospital uploaded discharge papers for the cashless claim to be settled.\n\nBefore porting, however, I would like to listen to some experiences of people who have a health insurance from HDFC Ergo. How much hassle do you have to face during a cashless claim? What about renewals \024 can it be just done online without calling customer care hundreds of times?
526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I bought a Samsung TV in 2021 and after 1 year 1 month of purchase, the TV Display stopped working. The authorized service center personnel said that the TV panel had to be replaced and would cost about 10-14k. Luckily I had bought extended warranty for 2 years, and this panel replacement was covered at no additional cost.\n\nNow, about 1.5 years of the panel replacement, TV display is again malfunctioning. The service center folks said, panel issue and the new panel will cost 10k.\n\nI escalated this to the Samsung team and some so called highhest escalation channel took up my complaint. I heard from this escalation desk and the person just kept giving me standard responses.\n\nThe frustrating part is nor the service center or the escalation desk is able to state the reason for malfunction.\n\nI bought this TV online and upon further research, I recently learnt from the online reviews that multiple customers have faced the same issue of TV display going bust in 1 year and then after repeatedly.\n\nI truly feel Samsung has sold defective products and is scamming customers. The TV cost me about 50k that's substantial money for me. I feel cheated and absolutely outraged. I want to sue Samsung. I know consumer court is an option, but I want to sue for fraudulent practices and mental harassment.\n\nI have posted this on r/legaladviceindia and some wonderful people have been sharing suggestions. I have also heard from some ppl on that sub that they faced similar issues with their Samsung Smart TVs. Since r/india is a bigger sub, I am keen to know from the members here if they have encountered similar issues and any suggestions on legal recourse available to me.
527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              child abuse in the name of discipline is way too common in India, but it becomes worse with stepmother in picture. There is a girl in my neighborhood who is going through something like this. Her stepmother makes her do all the house chores and does not let her study too. her mother died a couple of years ago. her father does not care about her. What are her options, and other kids who are going through something similar? we are from delhi. I wanna help this poor girl. it breaks my heart seeing her cry. 
528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I get horrible migraines with Aura. Symptoms vary ( after / during the aura) from numbness in arms and mouth, motor problems, unable to form sentences, pukishness , headaches ,complete energy drain post migraine. Can anyone suggest good doctors ?I reside in Karnataka. Can travel to tier 1 city if a doctor can treat and give me relief.
530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Is anyone a therapist? How's the profession? I am pursuing Psychology, and I want to gain some insight into the financial, personal, professional aspects of choosing this as your career. \nThank you.
532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Can I find a good data analyst job in Arab gulf countries like Saudi Arabia and UAE is it worth learning or just a waste of time for me as I don't have Computer science bachelor and learning the basics slowly Is it worth or just forget it and focus on a better thing to find good job with good salary and healthcare in Gulf???
534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hello everyone,\n\nI\031m seeking advice regarding an incident that occurred with my father\031s State Bank of India (SBI) account. Yesterday, an amount of ¹2,00,000 was unexpectedly credited and then immediately debited from his account. We have no clue regarding these 2 transactions.\n\nI\031m concerned about the security and implications of such a transaction. I want to understand:\n\n\t1.\tHas anyone experienced a similar incident? If yes, what was the outcome and how was it resolved?\n\t2.\tWhat potential risks should we be aware of? Does this affect the tax situation?\n\t3.\tShould we report this to the bank immediately? Although the money was returned, I\031m unsure if this warrants a formal complaint or investigation.\n\nAny advice, insights, or personal experiences shared would be greatly appreciated.\n\nThank you in advance for your help!
536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I want to make a 3bhk flat and i am considering these options. Anyone has had any prior experience with these companies? If so how was it. Im based in Ahmedabad.
537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     My dad came to pick me up at the railway station and unknowingly parked his car in a no parking zone. He got out and stood nearby to wait and get some air when the policeman might have come to check and found no driver inside.\n\nWhen we were leaving, he came up to us asking for a fine which we agreed to pay against a challan. I too asked for his id which he refused to show, arguing "Why should I show you my ID? Will I show it to a 1000 people here if they ask?" I kept insisting, calling it my right and agruing but he didn't budge. It was clear that he wasn't carrying it. After a little tussle, we paid the fine and left.\n\nIt got me thinking, could I have refused to pay the fine if he didn't have his ID? Can the police fine me for anything if they don't carry it? What else can a citizen do in such a situation?
538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I need help finding the original folk song used in [this video](https://youtu.be/9716eDLNSW4). Please provide the name or link where I can listen to the original song.\n\nBonus points if you can help me with the lyrics too.\n\nThanks =O
539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Found these old coins from my grandmothers collection . Are they of any value ?
540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hello everyone, I've purchased a WPL C34 RTR RC car from China for $90 (approximately INR 7500), which includes shipping. The item has been shipped, and I'm concerned about potential customs duties. Can you provide advice on what steps I should take in this situation? Btw I'm from Kerala.
542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TL:DR: Saw Animal and was reminded that recently most of the time Indian cinema (esp Bollywood) does not understand what a hero is. \n\nIn Animal (apart from the usual Sandeep Ganga Reddy fare: misogynist violence fantasy, mediocrity and demeaning of women) there are multiple scenes where Ranbir Kapoor is demeaning to his subordinate employees and even his bodyguard cousins. \n\nThe only person he truly speaks respectfully with in the entire movie is the South Indian character before the interval scene. And that cuz its the only character in the entire movie who truly gives no fs in raising his voice and giving it back to our protagonist. He is always rude to his subordinates and employees(which includes everyone since he is a billionaires son who has hired them). \n\nI am not concerned with the fictional realism of it all (for example a public figure involved in multiple public shoot outs, cuz we can suspend disbelief for some things as part of in universe lore) but the sheer lack of any redeemable heroic qualities  in him makes for a tough sell to sympathize with. \n\nReminded me of the Karthik Aryan scene in bhul bhulaiya 2 where he is making fun of rajpal yadav's dead wife and claiming that she is now incarcerated as a cow. And often in most of the mainstream movies all the side characters job is to glorify the protagonist and whistle and hoot at his every action. \n\nWhat is wrong with our culture that we produce such writers and directors who don't even understand the basic tenets of heroism, for example someone who overcome adversity and gives courage to people. \n\nA true example of the type of hero I expected from a movie with its protagonist called animal was something like Guts from the magna berserk. Someone who looks bad in front of the entire world who almost never gives up his morals and never ever does he exploit the weak or let's people in his life ever feel the weight of his inner or outer turmoil. \n\nInstead we get these emotionally stunted man children as hero's who wouldn't be able to survive in the real world for a week. All these characters are pathetic and just preying on the weak or looking good in the eyes of their sycophants. What a travesty, that not only are our writers and directors mostly never able to create compelling protagonists, but also that our leading men almost always fail to call it out and suggest change in these characters. \n\nI am not saying we should not have flawed characters (they make the best stories with redemption arcs) , but what is this bs. Bollywood I feel doesn't have people in it who have a differential between heroism and jingoism.
543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Chattisgarh, Rajasthan , MP, Mizoram and Telangana election vote counting in progress. \n\nECI website \n\nhttps://results.eci.gov.in/AcResultGenDecNew2023/index.htm
544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I've heard that there is a lot of bureaucratic red tape in India when starting a business; which I'm totally fine with. Im not expecting it to be as easy as starting one in capitalistic wet dream countries like the US but neither am I expecting it to be as strictly controlled as a hyper regulated ecosystem like the EU. But what I mind is the thought of bribing entitled people in power all along the way. The ones who sit on their chair the whole day doing nothing but collecting  bribes while gatekeeping people unfortunate enough to have to interact with them. Thinking about it makes me sick. Is this true? Because, just going back to the days I lived in India, I remember little things like paying money to get my driver's license not because I couldn't drive but because the driving school insisted that that was the standard operating procedure and if I didn't do it they would reject my application even though I could drive perfectly well.
547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hey everyone,\n\nIt has been months since Spotify yanked all the Zee Music songs from their platform. In October, a handful of famous hits were restored to the platform (like Apna Bana Le, Nachde Ne Saare, etc). In a new development today, all Zee Music songs are now restored on Spotify so you can continue that hearing. \n\nA few of you may have trouble finding a few albums (like Piku) or songs like (Namo Namo) but don't fret, they're there. You might just need to dig a little deeper -- all thanks to the fans who uploaded duplicates of the original songs when they were removed. \n\nGood luck to the music connoisseur in you :)
549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I have to travel in train with my dog tomorrow. Its my first time doing this. \nI want to know what's the procedure to get this done? Can I take her straight to my seat?\n\nI did my research on my end and found out that I have to inform the booking office but that should be done atleast 3 hours before the departure and my train is at 7am and i will not be able to reach at the right time nor i have the dog certificate that it needs.\n\nWhat should I do? I need to take her with me.
551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hello American person here with Indian parents.  \n\n\nI've recently been a lot more interested in traveling to India with my fiance (not Indian). But I have some questions. When I visit this time, I'd like to learn some of the language before.  \n\n\nEthnically, I'm Tamil - but I don't speak, at all. And I'm torn between learning Tamil or Hindi. (I know, this is pure blasphemy for a Tamil person to say)  \n\n\nMy dad spent a good chunk of his life in the army so he's fluent in Hindi, and I've had much better experiences with his friends who are Army folk. I think it's because they've travelled and seen more of the country/world, and their kids who are my age are easier to get along with - I just have more fun with them.  \n\n\nMy family in Tamil Nadu is great, but very conservative. It feels very stiffling when I visit them.  \n\n\nThe way I see it, if I learn Hindi, I can visit a lot more cities, because in most of the cities I'm interested in - Mumbai, Bangolore, Hyderabad, Kolkata, Hindi will get me far enough, and is more universally applicable. (Open to other city suggestions as well)  \n\n\nTamil seems limited to the state, and I think I'm more interested in seeing a variety of places?  \nBut for people who live in India - is there enough to see in Tamil Nadu that I'm just missing out on? Would love to hear people's thoughts.
552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The AMA is now live: [https://www.reddit.com/r/india/comments/18cuhxh/hi\\_this\\_is\\_manisha\\_abhinandan\\_from\\_newslaundry/](https://www.reddit.com/r/india/comments/18cuhxh/hi_this_is_manisha_abhinandan_from_newslaundry/)\n\n**Newslaundry,** based out of New Delhi, is an ad-free, reader-supported news media organisation. Over the last 10 years, it has won top honours, including the Ramnath Goenka Excellence in Journalism and RedInk Awards. It is also an Indian media watchdog that provides media critique, reportage, and satirical commentary. On YouTube alone, the platform has 1.8 million subscribers.\n\n**Manisha Pande** is the managing editor of Newslaundry and is the host and writer of TV Newsance, a weekly news and critique show that critically examines the absurdities of Indian TV news programming. She looks at propaganda on TV news, how a section of mainstream media spreads hate and misinformation, and the impact that has on Indian society. She previously worked with DNA and Business Standard newspapers. She has won the Ram Nath Goenka Award for best investigative journalist (2016) and Laadli Media Award for gender reporting (2016).\n\n**Abhinandan Sekhri** is the co-founder and CEO of Newslaundry. Before Newslaundry, Abhinandan co-founded Small Screen, one of India\031s leading production houses. He is also the general secretary of DIGIPUB News India Foundation, India's largest digital news collective. He previously worked at TV Today Network.\n\nDo join this AMA session with Manisha and Abhinandan on 7th Dec at 06:00 pm IST, only in [r/india](https://www.reddit.com/r/india/)!\n\nhttps://preview.redd.it/y2pydul4wm4c1.png?width=940&amp;format=png&amp;auto=webp&amp;s=d551a568808d716f7dd3ac1cadbadb42ca1245b9\n\n*Note: This post is an announcement. The AMA is not starting now. The AMA is not paid for by Reddit in any way. All views of the guest are their own and featuring the AMA does not imply an endorsement by Reddit.*
560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is on 16th floor in HCOL metro and nobody saw any rats in the vicinity. But plumbers say this can only be done by a rat. Any other possibilities?
561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I respect and look up to our great PM Shri Narendra Modi. He is the best thing that could have happened to India. Such people are born once in several yugas. He is the only vishwa guru. \n\nWhen Karnataka, Delhi etc announced freebies before elections, I remember him terming those as \034muft ki revdi\035. \n\nNow recently in the Mp, rajasthan etc elections, BJP promised freebies to the people. These freebies are \034welfare schemes\035 according to Modi ji as he says it is \034modi ki guarantee\035.\n\nI am very confused. Why are some freebies revdi while others are welfare. Why are freebies given by opposition parties revdi and those given by BJP welfare?\n\nWhat is the logic? Modi ji says \034Hypocrisy ki bhi Seema hoti hai\035. Isn\031t this hypocrisy?\n\nI love Modiji but this looks like hypocrisy which he himself says must have limits. Please enlighten me =O
566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A few people in my office went on a spree to name a star after themselves or their loved ones. These websites are pure scam. \n\nOnly the International Astronomical Union (IAU) is authorised to name the stars ([https://www.iau.org/public/themes/buying\\_star\\_names](https://www.iau.org/public/themes/buying_star_names/)), and whatever 'star' you name is not going to be published in any of the databases.   \n\n\nAnd these websites charge exorbitant rates to do this. Please be sensible and avoid this.
568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 India must be one of the very few countries, where entry is restricted to even the check in counters.  Long queues with passengers even missing flights are common. This is in addition to other queues at immigration and security, which are unavoidable.\n\nThe primary reason for their restriction is because of our culture, where travellers are seen off by family and friends. No restriction would mean a massive crowd inside the terminal. \n\nHowever there may be cases when non passengers may need to go upto the check in desk. The elderly, children, disabled, first timers may benefit from help through check in. \n\nInstead of checking everyone's ticket and ID, could there be a better way? An alternate approach may work better \n\nFirst of all, levy a hefty entry fee for non passengers - say, Rs. 2000 per head, high enough that they would think twice whether it is worth it. Those who really need, will get it. A high penalty of, say, Rs  5000 can be levied, if you enter without ticket. \n\nMake entry a walkin without checking tickets or IDs. Check only those who exit the terminal. They should have an entry ticket, a valid or cancelled ticket or other valid reasons. Without any of these, they will be fined. \n\nEnough signs stating the entry requirements, including the fines, should be displayed prominently.
570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         from somebody else's post i found this \n\n" \n\n1. Use Skyscanner\n2. Always search flight details in incognito mode\n3. Use VPN\n4. Use credit cards to redeem points or get 2-3% discount\n5. Avoid booking flight tickets on weekend, you'll find a better cost of the same flight if you book on weekday\n6. Price will be low when you book between 12am - 3am\n7. International flights flying on Wednesday costs less\n8. Late night or early morning flights usually costs less\n9. Connecting flights are cheaper than direct flights but not always convenient\n\n "\n\nthrough your all's personal experience , add some more. Thanks!
573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Banks Write Off Rs 10 Lakh Crore In 5 years, NPA Recovery Rs 7 Lakh Crore\n\nhttps://www.ndtv.com/india-news/banks-write-off-rs-10-5-lakh-crore-in-5-years-npa-recovery-of-rs-7-1-lakh-crore-4636378
574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
575                                                                                                                                                                                                                                        **HEAVILY OPINIONATED**  \n\n\nPretext/Context: I haven't personally faced any major forms of discrimination but I have witnessed some events firsthand that make me reach the conclusions I am reaching. Feel free to disagree with me and voice your thoughts. I've been observing for the past few years (and looking the very history of Indian Government) and the bend towards authoritarianism is truly shocking to me.\n\nI've had the following concerns for the past little bit:- The religiousification of nationalism deeply concerns me, oftentimes in debate on the internet or in-person if I make a perceived argument that's against the government, my very loyalty to my own country is called into question? I'm asked if I support terrorism for questioning Modi's relationship with the likes of Gautam Adani and Mukesh Ambani. We've started taking pride in this so-called strength when we put down someone else by questioning their loyalty to the nation by totally ignoring their concerns - you can see similar stuff like this in debates on tv channels where the only focus is to attack the oppositions "hidden agenda" instead of actually reviewing and/or criticizing the actions of the government. The very spirit of our democracy and free speech was that individuals could criticize the government, hold them accountable to their actions without the fear of getting arrested for going against the governing party. The entire idea was to stop authoritarian leaders such as the likes of the British who ruled us for centuries.\n\n\\- Back to religion, I'm from an urban area and one of my relatives refuses to purchase goods from their local grocer and would rather travel 5 kilometers to buy it from a store, since his local grocer is a muslim. The irony is that relative's late mother used to host these local vendors (including muslims) over for dinner without seeing these arbitrary religions lines - the religiousification of everything was something the British did to rule us so we didn't fight back - today, we have the "power" to fight back but we're so brainwashed into thinking of fellow citizens as the evil who seeks to destroy us - sure there are a few bad eggs, but we as a society have lived in relative co-operation for so long after the British left - why see these arbitrary lines now? The answer is obviously the "divide and conquer" strategy. Why not divide the general populus into multiple different groups that hate each other and then support the largest majority group, feed into the extremism by going ahead with whatever the most extreme right wing thinks and use the money your corrupt billionaire friends give you (who you in-turn award billions in government funds to) - to buy off journalists and the entire media to blindly support whatever the shit you ask them to support. To further solidify your position as a authoritarian leader, use the support of the majority who you just brainwashed into voting you into power in such overwhelming numbers that you can fuck up the entire Judicial Framework by controlling the very judges that are appointed, and control independent bodies such as the CBI so no one can challenge your uncontrolled power. Don't like people speaking up against you or highlighting your authoritarian policies - make them disappear, file false criminal cases, harass them - make sure they shut up and follow you. International condemnation? Start to criticize them as well? (Sure you should absolutely do it) - but where's the acceptance that you need to work on yourself, the points they are making are perfectly valid? Fuck that shit. No comment on that shit, arrest journalists on that shit, ban that shit.\n\n\\- I find it interesting how we've come to support the idealization of politicians. Everywhere we go, I see a poster of not only Mr. Modi, but Mr. Kejriwal, the district MLA or whatever - it's so weird. These people are ideally public servants, paid BY US, to work FOR US, they are our employees - they're entire job is to make our lives better. Guess what they are doing, definitely NOT making our lives better, inequality and unemployment being at an all time high, infrastructure still fucking sucks despite BJP having limitless power (not saying Congress was any better, they're pretty similar in this regard in my opinion) - government corruption on all sides of the political aisle is so fucking insane that we've come to terms with it, we just understand there is systemic corruption in India and it's normalized.\n\n\\- Do you know what else the British did? Spread inequality between the general populus and the elite to a level that it stops mattering what the general populus actually thinks. Today, we're proud of the 100+ billionaires that profit off of people below the poverty line - we show respect to these billionaire opportunists like Ratan Tata, Gautam Adani, Mukesh Ambani etc. who literally pay these pennies, these same Indians are proud of their "fellow citizens" who are actually in the elite class and do not give a shit about them.\n\nI want us to see us as fellow citizens, people who genuinely care - majority of us Indians are amazing people and our society is being indoctrinated with this "Hindutva" bullshit that we're the superior religion and muslims are terrorists which is so fucking weird to me.\n\nYou know I've started seeing Modi's parallels with Adolph Hitler, seeks to completely suppress one class of people (not nessacarily kill, but definitely suppress), silences any form of criticism levied against him, domestically or internationally (thanks Dr. Jaishankar). He has made an absolutely mockery of democratic values and human rights - he absolutely does not give a flying fuck about the common public and like I feel as thou we're not far away from establishment of a complete dictatorship in India and the public would support it?\n\nI don't see myself being able to spend the rest of my life in this country, and I'm fortunate enough to be able to have the financial resources to do so but not everyone wants to, or can leave. Heck, I don't wanna leave but seeing these stupid fucking ideologies seap into the people close to me, so much so, that some of them don't want to talk to me because I don't think muslims, as a class of citizens, did anything wrong? I can't live with this burden.\n\nWe've been brainwashed into supporting policies against our own interests? The West ain't great, they're brainwashed too - doesn't mean I'm a terrorist, but they don't silence me because I called out the President/Prime Minister of the nation.\n\nI know this post is all over the place and I can't seem to fully encompass the gravity of the situation with this one post - but what I do know is that if someone with power doesn't want you to criticize them, they're definitely doing something shady, and I have over hundreds of years of US, Indian, British, German whatever politics to back that shit up.\n\nThanks for reading,We're definitely fully 100% fucked.\n\nFinally,As a taxpayer, citizen of India, brought up here in New Delhi.\n\nWith absolutely zero respect to your position, your life's work, everything you stand for, and anything you're doing right now (which is probably finding ways to kill people and cover it up)\n\nFuck you Rahul Gandhi, Narender Modi, Amit Shah, Yogi Adityanath, Sonia Gandhi (every politician ever).
576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Me and 5 of my friends(all guys) are going for Kedarkantha trek from 23rd-28th, but are confused about what to do next.\n\nAny good places nearby/must-do activities that we should consider?
577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Not sure if it's allowed here but here goes - I'm trying to find the name of one old black and white Bengali movie based on a frame I saw. It goes like this:\n\nA man and a saree clad woman are sitting in a restaurant/cafe, apparently on a date. \nThe guy is holding her hand saying something along the lines of "I'm delighted to hold your hands, thanks for allowing me to", to that she replies something along the lines of "What makes you think I'm not delighted myself in letting you hold my hand?"\n\nI'm trying to find this movie. Sorry for being vague. And I didn't know where to ask this either. \nPlease please help me out!
578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Is there any good Fine art colleges which offer a modern approach to art (specifically painting and drawing) and have a good acceptance for people belonging LGBTQIA+ ?
579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A Twitter/X war erupted between [@Tejasvi\\_Surya](https://twitter.com/Tejasvi_Surya/status/1731605785548091457) and [@CMofKarnataka](https://twitter.com/CMofKarnataka/status/1731738222844387549) over an ex-gratia payment of rupees 50 Lakhs promised to parents of martyred Capt Pranjal by the state government. Seems that bureaucrats in the Congress-led state government weren't acting speedily enough (surprise?!) for the youthful BJP MP\031s liking and he took to Twitter to vent out his letters.\n\nSo, why am I not surprised when they simply use the media as mouthpiece when politically convenient\n\nAs a son of an ex-servicemen, this *rant* made me cringe because successive governments have shown little regard for the rights of veterans. \n\n---------\n\nTake the case of my dad, who legally purchased a parcel of land in north Bengaluru 25 years ago after honourably retiring from service. The land registration (Katha mutation) had been delayed for over 25 years with revenue officials giving some cock-and-bull excuses. Local bureaucrats and their touts took advantage of his naiveté and trust in governance by bleeding him dry of his savings& until I stepped in and took matters to court. \n\nKeep in mind, this is a legal right my father was fighting for, not any handouts or favours. \n\nAfter three High-court orders and a contempt-of-court filing, the Deputy Commissioner finally passed an order in my favour, but now the Tahisildar - lowest in this totem pole - is dragging his feet on acting on that order. Long story short, I am continuing to use legal tools and [Tweets to highlight the issue](https://twitter.com/PetitionIssue/status/1731491638063861764) and complete that saga.   [TL;DR? check out my earlier post](https://np.reddit.com/r/india/comments/16dw5kk/my_post_about_bribe_and_nepotism_in_india_blew_up/) \n\n---------\n\nServicemen and women are proud of their service to the nation, and their families don't need charity or handouts. \n\nAnd this is why I cringe and gag when I see opportunistic politicians use the lives and sacrifices of servicemen to score brownie points.
580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I absolutely love the Indian cuisine, but unfortunately I have a condition that doesn't allow me to consume much hot/spicy food. \n\nSince I'm planning on being in India for a while, I was wondering if its easy to ask for food that isn't drenched in curries? So, plain rice, some meats/veggies on the side. You get the idea.. \n\nAre there any existing Indian dishes that already qualify?
581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hello, wondering if someone can help explain/translate the IRCTC terms and conditions for a refund as I can't understand at all what I need to do.\n\nI am in deep Meghalaya, and need to cancel a counter ticket for a train that leaves Guwahati on the 10th December.\n\nIt is a WL ticket and I'm not moving in the WL queue and it's looking unlikely I'll get a confirmed seat so I would like to cancel and get a refund. I would also like to extend my visit in this Magical place. \n\nIt seems it's possible for me to cancel online - I log into my account, and there is a counter ticket cancellation section on the website. \n\nWhat isn't clear is, after I have completed the cancellation, WHEN do I have to visit a counter to collect the cash refund?  Its nearly 3,000R so keen to get this back! It reads as if like I need to collect the cash up to 30mins before the train leaves? I was expecting it to have a 30 day period or something in which I could collect the refund cash...\n\nI really don't want to spend 24hrs and X rupees travelling out of Meghalaya to Guwahati just to grab this cash. \n\n(The reason I have a counter ticket is because my account/website wasn't working the day i needed to book this ticket so was forced to get one of these paper ones, very annoying.) \n\n&amp;#x200B;\n\nThanks in advance! \n\n&amp;#x200B;\n\n&amp;#x200B;
582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I had made a booking for business travels through cleartrip and since my travel plans could have been changed at the last moment, I bought the CT Flex max, which would return the 100% base fare in case of cancellations from my end. I received the tickets immediately, but when i requested for the invoice, they only sent an invoice for ¹300 and not the CTflex max (for which i paid 1100), I asked for the invoice for the booking of Indigo for which they said ,"The invoice is generated by Indigo after the journey" which was obviously not true, since idigo sent me the invoice after i requested for it. I wouldnt have cared if i didnt use my GST no. for the booking,  but since i did, i needed the proper invoices. I had to stay on call for more than 30mins requesting for the invoice and explaining the entire situation to the cleartrip team to which they said ,''Insurance ka invoice nahi milta sir".
583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hey all!\n\nSo I ordered a pair of ie200 IEM's on the 30th of October for a sum of ¹8999 , but I got a call next day from customer care saying that the product is now "out of stock" and that my money would be refunded. \n\nCut to December 2nd, they were back in stock for a sale price of ¹8999 (MRP 14999). So I ordered them again , thinking that I might get my product this time .\n\nBut nope , it was cancelled again today(December 5) . \n\nNow it might just be me , but I feel like they deliberately cancelled my order since I bought it on "Sale". Remember- the product went out of stock AFTER I placed an order for the first time , but they cancelled my order nonetheless . The same thing  happened with my second order too. \n\n I would recommend people who want to order other, more expensive products from Sennheiser to beware. \n\n\nThanks for reading through my rant.
584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I dont know if this is just a local thing or happening at national level, one of my friend works at zp(zilla Parishad) office and he have told me the way Govt folks are creating a fail proof corruption system where the looted money is forcefully distributed among everyone working in the office right from the higher levels to the peon working at the office. Also there's a rule of hiring only one or two peons just to maintain the system strong and not get caught, these peons are working there for like years and they have salary higher than what an beginner software engineer earns in India. Apparently this money comes in white envelopes and are placed at everyone's desk and you don't have any choice than to keep it. I don't know why they won't raise their voices against this but I guess its because of job security and given the politically suppressed justice system no one will ever even take action. Am sure even you guys might have heard something like this from someone.
585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I\031ve been in TN my entire life. I\031ve heard from many of my friends that TN has the best roads. But last week took a trip to Goa. TN roads were horrible, broken and there were so many diversions. On the other hand roads in Karnataka were absolutely beautiful. There was only a single diversion and traffic in Karnataka while returning. Lanes were huge and incredibly well maintained. There was some hilly area after Hubballi before entering Goa where roads were not good. But man feels like last few years TN roads have gotten worse and Karnataka has greatly improved their roads.
586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OKAY EDIT:\n\nContrary to what everyone thinks, I do really love this place. It's diverse, beautiful, and the people for the most part are lovely.\nI understand I look like some colonial Englishman coming here and saying this is filthy after robbing the place. \nBut I am so fascinated to understand how this country came to be the way it is, are there any books anyone can recommend me?\n\nI want to preface this by saying, I am a White westerner with an Indian partner, and I have just completed 2 months of travel in this country (first time visit) \n\nI think people in western countries fear being racist when discussing India's clear clear social issues (or at least are perceived as 'issues' to well - most other people's) \n\nIn terms of history, culture &amp; tradition and natural beauty, India is amazing. The diversity is underrepresented and you can really get out whatever you want from this country. It is beautiful. \n\nBut that should not stand in the way of the fact that a large minority (could be majority) if Indians, particularly north Indians, have absolutely no social skills, manners or compassion. \n\nThe country is really every man for themselves. I don't even know where to begin, sanitation, overcrowding, corruption or a general lack of common sense. \n\nThe country needs to change, the people, particularly when they move to western countries, and there's a lot these days, really need to undertake major learning as to how to adapt. \n\nAnother fact is, Indians really have a lack of respect for their own country, throwing rubbish everywhere, public urination and dedication being rampant, it's truly filthy. \n\nThese are most certainly not racist comments, this doesn't even apply to all states of India either, but I am going to generalise as it is a prevalent issue. \n\nI have loved my time here, it is not for beginners, particularly if you are not of South Asian descent, but my word, the lack of respect, the predatory nature of some of the people really detracts from this amazing, diverse nation. \n\nThis needs to change before India and indian people can really be taken seriously in the world. And you know, the majority of people I have met personally, are so lovely, I think that the nice people in India, are the most inviting and welcoming, loving people in the world. But the lows are just so low. \n\nAgain, I don't necessarily blame any of the people, I don't have much of a deep undersfanding of the social, political and historical reasons for the country being the way it is. But something needs to change.\n\n This amazing place is truly being wasted and disrespected.\n\nEDIT: the country of India gets romanticised, the people certainly do not overseas, I do understand the rampant casual racism. \nMy point is more that the issues that India are faced with are so extreme they shouldn't be ignored to just say hey the culture / scenery / history is amazing. No. Sh*t needs changing \n\n\nAnother edit: I'm not American, and I'm not criticising India because it's an easy target or whatever. I have plenty of issues with the USA, I don't voice them because I have no interest in the USA, I voiced my opinion here because India is one of my all time favourite countries. 
587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \nMy gf and I will be going to India for 3 weeks soon (early January ) and we cannot figure out where to go because it\031s so overwhelming. \n\nWe\031re flying into New Delhi and so far all we know is that we want to see Varanasi. \n\nWe\031d prefer to stay out of the golden triangle and stay in places with good wifi/data since we need to work occasionally. \n\nAny recommendations? Are places like sikkim good to combine into this sort of trip?
588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Today I received a call from fed ex customer care executive. He was telling me that from my name and number some illegal package was sent from mumbai to taiwan. And theres a fir lodged against it.He told me to file cybercrime complaint. He gave me too many details about package and all. He also told me his name. He didn't asked for any details or for money. Is it scam? What should i do?
589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n\nI have completed my bsc economics hons with maths and stats from tier 1 clg.  myquals are 95/96/8.6.\nCurrently I am pursuing msc data science from an indian uni. \nI got very interested in statistics and econometrics during my bachelor's. But I wanted to pursue a professional degree so choose data science.\nBut now the problem is i am learning programming and computer related terms for the first time and there are many software engineers already in my class.\nSo there is no way I can compete with them regarding computer related subjects. Also I am not interested in core programming or computer science.\nI like analysing data and playing with it. I also like econometrics and making statistical conclusions/forecasts. But this course is heavily focussed on programming and computer science topics.\n\nMy question is what do I do after my msc to make myself a valuable asset for any company?\nWhat are further study options that would ensure my employment and earning?\nWhat certifications and courses can I do to enrich my resume?\n\nAlso I have done mini certifications on python, SQL , tableau, advanced Excel.\n\nTldr:\nPursuing msc data science but not really interested in core computational science. Love stats and econometrics. No prior experience with programming or computational science.What further courses/certifications should I do to continue doing what I love?
590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Well, I am doing law from a reputed university but I am first grneration lawyer and I want to practice in big cities only, my parents dont want me to practice law in our small city (after spending lacs on my education and doing my bachelors and law from top colleges in India)\n\n\nPlease suggest me.
591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi y'all!\n\nI hope this finds everyone in the best of health and spirits, and I also hope that you've all had a bright start to the week! \n\nI am new to the Indian banking system, and I could really appreciate your help with selecting the right bank to open a business bank account in. I am planning to open a hotel/restaurant/banquet hall in my city, and as such I would appreciate suggestions that are in accordance with what I am planning.\n\nFor instance, since I am only starting out, I suppose a low monthly average balance would be welcome, but I am happy to make concessions as and when necessary, as long as the service and ease of use is exemplary. The same goes for any transaction fees, or any other fees/charges.\n\nMost importantly, keeping in line with the nature of my business, I would like a bank that can offer me excellent support in implementing and fostering POS terminals at my business location, along with acceptance of most major global payment gateways, to ensure that guests from all around the world can make payments to my establishment easily.\n\nHighly functional, high tech apps and fast service, goes without saying.\n\nAdditionally, I should point out that I have no financial constraints and I am not in active pursuit of any sort of financing, seeing as how I have secured the same already, which means that I am open to any and every bank, no matter how costly or cheap, as long as I can benefit financially, substantially courtesy of the bank.\n\nCan I get some suggestions, so that I can act accordingly? I have checked most banks' websites, however they are not very detailed about the services they offer, and phone inquiries hardly generate any callbacks. \n\nThanks in advance for any advice that I am given here, I really appreciate it! Wishing you all a good rest of the week, and a fantastic end of the year to come! :)
592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The movie's releasing on 8th and there's absolutely no hype here, it's not even listed on bookmyshow. Halls are filled with Animal screenings. I really want to watch it on the big screen, I've heard there may be multiple oscar worthy performances, sad that out of all the things in life, a movie getting a screen in my city is what I'm worrying about...
593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I turn 18 in April hence my current passport expires then. We have submitted a passport renewal application 2 months ago from the indian embassy in Poland.\n\nNow I don't know what happened but this time police verification is required in India. Which can take upto a week. \n\nI travel to India on the 5 of Jan through Dubai and back at the end of june\nI have a valid polish Visa, can I still travel on the Basis of my current passport that expires in 5 months?\n\nI'm travelling with parents and they have valid visa.
597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hi, i need some help A couple of years back, I bought this home for parents in outskirts of my hometown Jaipur. it was decent at that time, clean enough with good enough roads.\n\nsince then, roads have been destroyed by rains, pipeline work, etd. and garbage is lying all over the roads and empty plots. theres waterlogging throughout the year, and roads are like offroad track.\n\nsurprisingly, the roads around this area have got patched and cleaned but our area is ignored constantly. but for ur locality the local councillor (parshad) doesnt really care it seems\n\nI have written mail to CM, jaipur development authority, and also raised complaints in local government helpline. they always say it will be done in 2 years.\n\ni am out of options and need suggestions. I feel sad that I bought this house for my parents and this feels like I have out them in slum. mind you, while i said outskirts,  its an urban area and well within city limits.\n\nI am an honest tax payer and I feel the need to get this fixed. need suggestions on this.
598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i really want to work as a online tutor for extra cash (I'm a student). how can I go about this? I've tried internshala and superprofs and haven't had any success so far. if someone has any suggestions on how to go about this, that would be awesome.
599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hello dear fellow redditors,\n\nMy laptop was stolen from my bag during one of my trips with redbus. I am desparately in need to get the CCTV footage of the trip. It is already the 10th day. I tried approach the regional manager for redbus, the driver and their help. Their help actually do not have any option for requesting support or speaking with a customer care executive. My police complaint was also very extremely slow in nature. But finally today the overlords of the police have granted me mercy and blessed me by registering my complaint. Now how do I gain attention of overlords of redbus with this official police complaint so that they may help me in my quest by granting me the CCTV footage and the details of my co-passenger? Time is ticking and I am afraid if the footage has already been overwritten.\n\nPlease help a brother out.
601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hello Subedit Community,\n\nI hope this message finds you well. I am reaching out to seek advice and recommendations on universities around the world where the tuition fees are reasonable or negligible, and the cost of living is manageable. Due to financial constraints, I am unable to apply for the TOEFL and GRE exams. However, I have a strong foundation in English as it has been the language of instruction throughout my academic journey, from secondary school to university.\n\nI understand that standardized test scores are often a requirement for admission, but I believe that my proficiency in English, as demonstrated by my academic history, can be considered as an alternative measure of language proficiency.\n\nI would greatly appreciate any information or suggestions regarding universities that might be open to considering my case. My primary goal is to pursue higher education in a setting that is both academically enriching and financially feasible.                                                                                                         Here is a brief overview of my academic qualifications:\n\n* 10th Grade (2018): 87.4%\n* 12th Grade (2020): 61.8%\n* [BTech](https://B.Tech)(2024): 9.05(till sem 6)\n* Also have published a research paper\n\n&amp;#x200B;
602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Me and wife are using on of those for the last year and the sleep is frankly terrible. Is it really the mattress? What should I change to?
603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have heard microneedling is really helpful in combating hairfall. Been looking for a suitable device -- I've heard dermastamps are better than dermarollers. Need some recommendations for devices readily available in India.\n\nHave you noticed any improvement with microneedling? What device do you use and how do you use it?
604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bunny was found injured as she was hit by a bike. After battling a leg surgery and fungal infection, she found her forever home through reddit.\n\nShe now enjoys being the pampered cat of the household. \n\nWe thank everyone who donated for Bunny\031s cause and helped us gain some time to find her a home she deserved.
606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A few weeks ago we posted the adoption appeal for Chhotu, a ginger male cat who was found inside a car bonnet.\n\nHe found his forever home through reddit and now lives happily with his 4 siblings.\n\nChhotu was adopted by \n/u/Anonymouslyyours07 and is now called Leo.
607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When Prashant Bhushan said that the deletion of the case was unusual, Justice Kaul said, "some things are best left unsaid".
613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               https://12ft.io/https://www.thehindu.com/news/national/supreme-court-asks-if-unmarried-women-having-children-through-surrogacy-is-against-indian-society/article67607109.ece
616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Today the nearby Building which has gone into  Redevelopment is being Demolished which is causing a lot of Noise .  I Want to ask if the same Level of noise will be there for the whole duration of Construction(1-2years) or the noise will reduce after Demolition of building is done ?  I Am asking because I have important exams coming up .
620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              468 people took their lives every day in \03122: NCRB data\n\n https://timesofindia.indiatimes.com/city/delhi/468-people-took-their-lives-every-day-in-22-ncrb-data/articleshow/105739947.cms
621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              India has the highest number of vegetarians: Report\n\n https://timesofindia.indiatimes.com/life-style/food-news/india-has-the-highest-number-of-vegetarians-report/articleshow/105715825.cms
623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AMA is now live: [https://www.reddit.com/r/india/comments/18c6zty/hi\\_i\\_am\\_dhruv\\_rathee\\_a\\_youtube\\_educator\\_recently/](https://www.reddit.com/r/india/comments/18c6zty/hi_i_am_dhruv_rathee_a_youtube_educator_recently/) \n\nDhruv Rathee is a prominent Indian YouTuber and social media influencer. He is widely recognized for his insightful infotainment videos covering a diverse array of socio-political, environmental, current affairs and educational topics. He has garnered significant attention for his ability to dissect complex issues in a comprehensive manner, making them accessible to a broad audience. In 2023, TIME Magazine included him in the list of 'Next Generation Leaders', making him the only Indian personality to be featured for this year.\n\nAs of September 2023, he has about 17.1 million subscribers across all channels and 3.2 billion total video views. Out of this, his primary YouTube channel has 13.9 million subscribers, making him one of the most well known YouTubers in India and South Asia. His reach has garnered him collaborations with international media houses such as Deutsche Welle, BBC, Brut and NDTV.\n\nDhruv Rathee's educational background is in mechanical engineering and renewable energy engineering. He completed his bachelors and masters from Karlsruhe Institute of Technology in Germany. He also has a second degree in Economics and Political Science. His approach involves meticulous research, presenting facts in a clear and concise manner, and encouraging critical thinking among his viewers. This has established him as a credible source of information, particularly among the younger generation in India who seek perspectives beyond the traditional media narratives.\n\nApart from his primary YouTube channel, Dhruv Rathee runs a travel vlogging channel - Dhruv Rathee Vlogs, with his wife, where he uploads travel videos of exotic national and international destinations. His travel channel is also one of the largest ones in India with over 2.2 million followers.\n\nSo don't forget to join this AMA session with Dhruv on 6th Dec at 09:30 pm IST, only in r/india !\n\n&amp;#x200B;\n\nhttps://preview.redd.it/w9agam541g4c1.png?width=1080&amp;format=png&amp;auto=webp&amp;s=07799eeb7b44ef42cae4898c342ad8315f6664f5\n\n*Note: This post is an announcement. The AMA is not starting now. The AMA is not paid for by Reddit in any way. All views of the guest are their own and featuring the AMA does not imply an endorsement by Reddit.*
626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note - Already posted in r/indianrailways. Posting here for wider reach. [Link](https://www.reddit.com/r/indianrailways/comments/18b6lrh/seeking_travel_advice_rajdhani_express_2a_journey/)  \nI'm traveling to NDLS from DDU by Rajdhani Express (12313) in 2A on 10th Jan with an RLWL/3 status\n\n1. Any insights on the likelihood of confirmation before departure?\n2. Contingency plans if the ticket remains unconfirmed post-chart preparation?\n\nI've not traveled much by train, never on an unconfirmed ticket so not sure what are someone's options in case of an unconfirmed ticket.\n\nI don't want to travel that much distance on a bus and last minute flight ticket will be very costly. It's already 6-7k. So I can avoid this journey altogether in case traveling on an unconfirmed ticket is not recommended.\n\nThank you.
629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         a friend of mine named sunil, took 10k from me for an emerygency. as he was  friend of mine, i gave him the money. he had said that he would return by november first week. he took the money in october.  \nit is december now.  \nlast month , on 27th my sister's wedding was their, i asked him to return the money as i was in urgent need, he postponed and said in 2-3 days he will return.  \n\n\nbut from last week, he has started ignoring my text in whatsapp, stopped picking up my phonecall.  \nhe is jobless and i don't think he has money.  \n\n\n  \nreddit gods, please help me by providing your valuable suggestion. I dont have a high paying job, 10k is alot for me.\n\nwhat should i do?
631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             https://12ft.io/https://www.thehindu.com/news/national/no-disruptions-this-time-india-bloc-parties-resolve/article67605113.ece
637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 From the infographics sub.
640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is there any brand that sells natural honey(a little bit of preservative is okay)? I have bought a lot of honey from different brands but all taste artificial(Dad says it who used to have access to natural honey as a kid0
642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Well in the recent times, I have seen many videos of influencers dancing and performing in a disrespectful manner in public places like trains, buses, parks, metros etc. Which does not suits the standards of India, as an emerging superpower.\nI honestly don't know whether it is right or not to perform like this in public space but wanted everyone's opinion on this. \nBecause people travel with their families, which makes it a bit awkward.
643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While scrolling through Twitter today, I saw this new megacity the Chinese have planned. Its called  Xiong'an New Area. The plans look absolutely stunning and knowing China, they will pull this off. I see new cities like these popping up all around the developing world. \n\n&amp;#x200B;\n\n[Does not matter that the source is Global times. It is stunning for a project that started in 2017 ](https://preview.redd.it/kt2xfb4ikb4c1.jpg?width=2000&amp;format=pjpg&amp;auto=webp&amp;s=547e041c58d6bfef6fba8eb780425027dd5ceb84)\n\nAnd then I am faced with the grim reality of India. I am so fucking tired man. Why cannot we have good cities? Scratch that, why cannot we build new and PROPERLY planned cities?(Land acquisition , I know yada yada)  When China was at our economic levels back in mid 00s, they were already building Chongqing which did not look too different to an Indian City.  Just look at it now. Absolutely stunning. When will we ever get this level of city planning? I see all these stunning cities when I visit them abroad. I get home, the first thing I have to do to get into my society is to honk at the stupid cows who love the grass growing from the sides of our unpaved roads that were left unfinished due to lockdowns.  I had hoped that with our economy getting close to $5 trillion  GDP, this country would finally shake off its hostility to skyscrapers and build new vertical cities. But that does not seem to be the case. \n\nWe need someone like Franklin Roosevelt (not necessarily his politics but the political power he held to enact the New Deal). Implement some common sense reforms. Reform the farm and the land laws , the latter which is the biggest hurdle to any infra project. \n\nRant over. Back to job hunting 
644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So I was wondering why don't we have equal representation from each state. This will ensure every state's concerns and voices are heard. Instead, it is purely based on the population of the state. Doesn't this give an incentive for states like (UP, Bihar,Maha etc) with overpopulation to remain that way and still have higher representation, and states from the northeast not even have any representation? Also states like UP and Bihar lag in literacy rates (no offence just facts).  Having equal representation from each state will ensure better representation of the diversity of India instead of just a few states ruling the roost cause they didn't choose to control their birth rate.
646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pallav singh is among the many who suffer due to poor health system of india .\n\nhttps://x.com/pallavserene/status/1731685261820477883?s=20
648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \nThis post is divided into pros &amp; cons of Modi govt from 2014 to date.\n\nPros\n1) rapid growth &amp; improvement in transport infrastructure.\n2) make in india initiative which enhanced the manufacturing capacity of india in some aspects &amp; increased both domestic &amp; foreign exports of various goods. The export sector has particularly improved.\n3) terrorist attacks on civilians declined considerably. Excluding J&amp;K, the overall civilian safety from terrorist attacks is now far better.\n4) the no: of international companies &amp; their investments increased.\n5) military has been modernised &amp; equipped with better quality weapons &amp; various other tools to some extent.\n\nCons\n1) various botched projects/policies such as demonetisation, GST, farmers' issues, manipur ethnic class issues, delhi/uttar pradesh communal violence &amp; riots, aadhar card data leaks, wrestlers' issues, covid lockdown &amp; vaccine policy &amp; so on. Demonetisation was a fiasco. It was a ludicrous policy by govt. GST was bungled by govt to a huge extent.\n2) disdain for human rights.\n3) fundamentalism/bigotry &amp; peddling of pseudoscience.\n\n4) controlled mass media (godi media)\nBjp/nda supporters &amp; followers while defending godi media should understand that media was one of the paramount reasons for the defeat of congress/upa government. During the rule of congress/upa govts, media was far more independent &amp; powerful. A lot of medias were against govt. They often criticised &amp; trolled govt. They informed the general public about govt's various issues &amp; faults from time to time. Some of the national medias were usually on their toes to chase &amp; find out the govt's misdeeds. This was especially very evident during the UPA 2 govt. To put it in a nutshell, media was the 4th pillar of democracy during those days. But unfortunately, today that's no more the case.\n\n5) distraction of actual issues by diverting public attention to islamophobia/christianophobia/sikophobia &amp; pakistan/china along with ever growing nationalism &amp; jingoism to also deviate people from other relevant issues (to be not confused with patriotism which is the positive side).\n6) religion (hinduism) and various government policies/actions are mixed with each other.\n7) protection &amp; garlanding of rapists &amp; hate speech proponents.\n8) rampant crony capitalism and all level govt corruption (gautam adani &amp; PM CARES fund are apt examples).\n9) complete lack of transparency in various govt accountability matters/incidents such as PM CARES fund.\n10) suppression of citizen participation in democratic processes like RTI &amp; improper response given to their queries by RTI.\n11) inauguration of half-baked infrastructure projects. Many of these projects were &amp; are incomplete with lack of property quality, safety &amp; reliability at the time of their inauguration &amp; thereafter.\n12) make in india project's vision was not fully realised. There were several issues with it in respect to quality &amp; reliability of various products. The govt failed to extensively utilise its scope &amp; further potential.\n\nAnother point worth noting is whataboutism &amp; blame games that are some of the major tactics which are often used by BJP govt as a part of their strategy to conceal their faults, responsibility &amp; accountability. Although they have been ruling India for nearly a decade now &amp; had also ruled india in some other terms before 2014, but they still keep on blaming Congress/UPA for any issues &amp; faults which is hypocrisy to the peak. But what they fail to understand or intentionally don't realise is that they were overwhelmingly elected to form govt by the majority of indians in 2014 to fix the issues &amp; faults of Congress/UPA government terms. But it turned out that BJP govt is far more evil &amp; corrupted to the core along with their communal hate &amp; divisive politics.\n\nAnyway, these lists are by no means exhaustive.
649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Another body blow to AIT or adding more weight to it? Wdyt?
654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The federal government will "significantly" limit the number of study permits issued in its attempt to tackle fraud and abuse of Canada's international student program.\n\n"Enough is enough," Immigration Minister Marc Miller told a news conference on Thursday as he announced the government would raise the financial commitment required of incoming international students and restrict the weekly work hours they will be permitted.\n\nStarting January 1, 2024, the cost-of-living financial requirement for study permit applicants will be raised from the current $10,000 to $20,635 in addition to their first year of tuition and travel costs to ensure that international students are better prepared for life in Canada.
661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A must read for all RAW enthusiasts.
665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hey, so I live in Delhi NCR and my great grandfather (my Dad's maternal grandfather) used to live in a pretty big house in a South Delhi locality until he passed away 14 years ago. My Dad's mother had already passed away, and her two brothers (great grandfather's sons) passed away pretty soon after his demise. Since then, the house has been owned by the two sons' wives, who are my grand aunts, and we are on good terms with both of them. However, they do not live in India and have been trying to sell the house for the last 13 years, with no success so far, although interest has been expressed to them and some negotiations have progressed at different points in time, before stalling.\n\nThey come to India to try and do something about the property, and also to visit us and other family members every few years, but they obviously cannot come more often than that, and are quite eager to find a buyer, close the deal, and sell the property. I have been thinking about helping them find a buyer, through some brokers I know who operate in South Delhi, and in doing so, I could serve as their local point of contact while facilitating the process and making things easier for them without their having to come here all the time. If I do something like this, where I am not exactly the broker myself- the local broker can take care of everything that brokers do, but am still a local facilitator for them, how much do you guys think would be a reasonable sum/ share of the amount they hypothetically attain, to ask for from them?\n\n&amp;#x200B;\n\nI know brokers charge a commission of around 2% for helping you sell a property, so just wanted some ideas. Keep in mind that they would feel comfortable with having someone like me, who they trust, supervising and working on a deal like this, and the property itself is certainly going to be very expensive (somewhere between 15-25 cr, in my estimation, based on what I have seen for properties in the locality).\n\nKeeping all this in mind, is it fair to ask for some sort of commission? Or a larger percentage of the final amount?
669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So I just wanted to choose a good debit card from HDFC as I just opened an account there, I heard multiple people say that you'll get multiple features like debit card emi and other perks with better HDFC debit cards like Millennia , as of now I have a money back Debit card which is free and not being charged with normal perks! Kindly help me out
670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There was a cyclone in chennai on 4/12/23 (Monday) and the connections were suspended to avoid any damage but even after 3 days when everything got fine my ACT internet connection hasn't been restored and the ticket which I have raised is just showing ETR (Estimated Time of Restorative) and it's just shifting it after the schedule day by day for 3 days. If I called the customer care it says all the clients are on another call and will pick up your query shortly but no response so far and I'm very dissatisfied with the service of ACT in chennai.
671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Some people dont tell their plans in advance to others or dont post pics of trip until it has completed just to avoid nazar/evil eye. Is it even real? N does hiding things from others to prevent it work?
672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For the context: I appeared for the JLPT exam for the first time last Sunday. The N4 level. It was fairly average as I knowingly applied one level above to check my understanding of the language. Now I am considering to take proper online language classes, so that it will be reasier to go for the N3 level in July. I looked up on internet and came across Hayakawa Language classes in Chennai. Should I continue with my self learning method or enroll for proper teaching methods?
673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We have too many frustrated nosy people, now I have started to feel people love the feeling of demeaning others ,or subtlety demoralising them, try sharing anything like for example " oh I opened an FD" , most of the will ask u which bank and then tell how how u should hv choosen some other way or other bank,  only 1 percent or less will be happy u started saving, what is the first thing people ask when u tell them u got a job? What is the salary , , or the field u hv choosen is bad and these re the cons,  u re in the middle of graduation of a certain degree and people will say oh these degree isn't worth it nowadays , u re in the middle of graduation how would u hv known , what would happen in future.only if u exaggerated ur life plans upto the society sterotypical standards or above people will says it's the right decision , but now people get jealous of u having this life, so they try to put some demotivating thoughts or words to make u lose focus, being completely aware of what they re doing, people don't wanna talk about anything else. Other than a sterotypical topic and if u do u re a nerd or , "kya karna hai itana knowledge lekar" wala dialogue will come ur way, poor folks are into chaprigiri, middle class into fomo talks kab shadi hogi , is age meh itana salary , kids , office politics, and rich people re getting richer.\nEither don't tell what ur abt to do next in your life or exaggerate ur achievements.that is the best way to  live peacefully.\nI went on a rant coz my nephew just cleared neet and was happy but the world around him , constantly talked abt horrors of being a doc , long working hrs , and how a.i will take over his profession , and how there re easier ways to earn money and he choose the hardest one , and even telling him most doctors wife cheats coz doctors don't hv time for family.\nNow he is in his first year and started to regret his choices heavly, thinking of dropping out, he studied  really hard for neet . It's sad .
674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How and when can net zero emissions be realistically achieved in India? What are some techniques that everyone can add as habit to their daily lives to contribute to this goal? If I'm not mistaken, the Modi government has proposed net zero 2027 but could it be done sooner if we tried really hard? What would have to happen to achieve this and how would it negatively and positively affect the society? My reason for curiosity is that changes always leave behind a large section of people, especially the poor. \n\nFor example, would switching to electric vehicles help? Thing is we have an affordability and electricity problem so this is not feasible. Please share your thoughts.
680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hello pet parents, greetings of the day. I am reaching out to gather information about the challenges you face with your pets. Presently, I am working on a project related to pet care. Whether it's medical issues, emergencies, food challenges, hygiene/grooming, or the cost of clinic services, your insights will be invaluable.\n\nIf you could also answer a few specific questions, it would greatly contribute to identifying these challenges:\n\nHow do you identify which clinic to visit? What methods do you use for your search? For example, Google search for websites and details, maps for locating clinics, etc.\n\n* Could you share any emergency cases you've faced or experienced as a pet parent?\n* What types of pets do you have and how many?\n* What are your thoughts on having a digital solution for pet care challenges?\n\nIf you guys think of any additional challenges apart from this please mention . Thank you
681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 i have kotak 811 account. and as title says i got 1rs via gpay. idk what to do? should i be worried.\n\ni haven't linked my mobile with upi as far as i remember. and also my gmail is also quite long, and since this is my second account. -1 is also appended.\n\nidk, how can someone mistype this long name. also, its gpay not any other where its more likely to guess. idk, how could this happen?
682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hi,\n\nI am a resident of Bangalore. I got a call from an unknown number saying that my Name, Address and Aadhar details were to send a parcel from Mumbai to Thailand which contained some illegal items. He said he's a service executive of FedEx Andheri Branch. The parcel contained 5 passports, 3 credit cards, 4 kg cloth, 140 gms of MDMA. Receiver Name: Lee Kim. Payment made through ICICI Debit card for 11500. I forgot to ask the Aadhar details. He said I have to register a complaint with Cyber Crime of Mumbai Police.\n\nThe call was transferred to other person who told me that I have to register a complaint online through Skype. I went online on skype and he made skype call. He told me to type that since I am not in Mumbai, I am making an online complaint, which I did, giving my full name(without any address).  At this point I got a little suspicious. He sent me this link [https://mumbaipolice.gov.in/OnlineComplaints?ps\\_id=21](https://mumbaipolice.gov.in/OnlineComplaints?ps_id=21) and told me to register a complaint. At this point, I told him that I will contact the regional police and get back and cut the call..\n\nIs this a scam? Did I fuck up by having a skype call with him? Would he be able to hack into my laptop or phone? What should I do now?\n\n&amp;#x200B;
683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thanks guys! This was great. Was fun taking all your questions. Remember when the public pays, public is served. Subscribe to Newslaundry and help us do the work we do: [https://www.newslaundry.com/subscription?ref=nav](https://www.newslaundry.com/subscription?ref=nav)\n\nDon't think twice. DO IT :)\n\nhttps://preview.redd.it/ajwnvv5o8v4c1.jpg?width=1024&amp;format=pjpg&amp;auto=webp&amp;s=2b0671bd1ef08d4a80c294eef8bde1a4dd9f0a18
684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I have some debt. I hate this job. It makes me miserable to the point of contemplating suicide. Night shifts, rural posting, horrible colleagues and toxic work culture, no growth. I have run away from it thrice. Only to go back due to my financial problems. This is the fourth time and i don't have it in me to go back anymore.\n\nI have interest in cooking, korean language and the entertainment industry (producing or a screenplay writing) I did my B.Sc(hons) Geology from Delhi University in 2012. Didn't pursue it further due to lack of interest.\n\nI wouldn't mind going back to college to learn something new and pursue a new career path. I have joined an online content writing course to earn some money while being jobless.
688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Really sorry for this selfish question but I had planned a trip to take my mother to Tiruapti, Madurai, and Rameswaram on 20th of this month and was wondering if I should cancel due to water logging at various places due to the cyclone. Is the situation likely to get under control to allow people to move freely?\n\nI have a direct flight to Tirupati on 20th. After couple days I'd go straight to Rameswaram (via road) and then to Madurai.\n\nI have flight and hotel bookings and was wondering if I should cancel those?\n\nAgain I'm really sorry if this is coming off as selfish. My heart goes out to those who are displaced.
689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hello, firstly I apologize if I make any mistake, or say something wrong. I am really in a tight position right now, I do not know what to even say and I really need your honest opinions and advice. So here it is:\n\nI need help in how to prepare a resume to get job as accounts personnel or similar sort of job.\n\nBackstory:\n\nI graduated as a B com Honours accounting student back in 2017, and instead of applying to job right away, I got into pursuing CA, along with government exams. But right around my ca inter exams I faced several situations including death of loved ones, Dad getting into accident and a really bad breakup, and then failing the intermediate exam.  \nIdk how to explain it but ever since that time period I went into some sort of emotionless rut where I felt numb and even getting out of bed was a huge feat, let alone going out, talking to others, and performing other regular tasks(which I was really good at beforehand). Time passed, all I received was "failure" tag in almost everything I tried, be it CA exams or government exams, yet I kept thinking I will crack them.  \nI did not ask for any external help, no tuitions and all since they costed too much and even though my parents told me to enroll, I denied thinking I will be just wasting money.  \nI thought things will get better eventually but my anxiety and the "heaviness" not only stayed same but got worse, so worse that at one point I was not even able to focus on or recall even trivial stuff. I still am not able to maintain a conversation without being anxious or weird, so I don't even know if I will be able to do anything anymore, not only that but I look at my old classmates, friends, cousins, etc. They all have good career with 10lpa packages and more, getting married and what not.\n\nWell with that said and keeping the post short, I just received a result which also was a failure, and now I can't see my parents go through more pain because of me, they do not say it, but I can't forgive myself for being so ignorant and all.\n\nI do not know how to even apply for job, how do I prepare my resume to get atleast a start in job market? All I have is "Graduated in 2017", that's it, on top of that, I have been told it might be too late and private firms and all won't even consider someone above 25, let alone a 27 year old inexperienced being like me for any role. I do not know what to do, I just want to provide enough that atleast my parents can be happy, yet I do not know where to start, and no matter how hard it is for me to say, but I have no redeeming skills or quality that can be shown to get a job right now. What choices do I have?  \nWhere do I even start?
690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you guys notice any increase of interest towards Jyotish (especially in birth chart astrology) among modern Indians? It\031s getting very popular in Eastern Europe - people study it as a hobby, attend courses, read books etc. \n\nI don\031t mean just looking once in your chart before marriage - I mean - do young people today in India have interest to study it deeply? Or is it perceived like outdated grandfathers fairytales? Tell me honestly :)
691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \n\nI 20m feel like, I am cursed by God to live a long miserable lonely life. I don't know where to start but  I just failed every aspect of my life so far and now I have no energy to move ahead. \n\nYesterday I saw my parents crying when I told them I am going to fail 6th attempt of my CA inter exams. It was enough to shattered the small will I had to not give up on my life. \n\nEvery new year I promise myself that I will change, make my life better and easy but it just remains same. My past regrets and mistakes never let me move ahead. \n\nWhen I was 5 year old my cousin brother used to do sexually wrong staff with me, I remember giving him handjobs which I regret till today.  When I joined school same thing happened with me a guy from my class tried to forcefully kiss me. \n\nIn my entire school life I was the shortest person in every single class even my juniors were taller than me. Everyone used to pass silly jokes on my height including teachers. This ended up making me a complete introvert. I never had opportunity to date any girls because all of them were taller than me.  I remember not taking fights despite being right, standing far away from my classmates  in school's prayer assemblies and sitting on front bench all thanks to my small height. \n\nWhen I was in 11th standard I proposed a close friend of mine and as expected she said no after few months she get into relationship with my best friend. I remember asking them if they are in relationship and they said no its all rumours in school. My friends kept telling me that they are lying but I prefer believing in my best friend and stop talking to them. \n\nWith time both my best and close friend ghosted because It became crytal clear that they are dating. \n\nAfter 12th I took CA and cleared first level in 1st attempt and fucked at second level 6 times. \n\nDuring this period of 6 attempts I became addicted to porn, was depressed and facing social anxiety. I ghosted few friends I had, fcked my eyes with Myopia and ruined the only good thing I had my beautiful face,now my face looks dull full of pores, dark circles and I am balding too thanks to stress. \n\nI have no idea If I will be able to live anymore with ugly body, messed up career and short height. \n\nSomeone please guide what to do next should I stick to CA exams or do something else
692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Im a fresher 21yo, completed my bachelor's on March 2023. I've been Looking for a job for quite some time and looking to move out of my parents house as well. \n\nThe job market has been shitty af so I haven't had any luck until now. But now I got an an offer through a referral in a startup company, pay is okay. So this means I do get to relocate to a good city as well which is great but I don't like the job so I'm confused if I should accept it or not because what if I do end up getting a job soon in a company that I like and I don't wanna be a position where I'm stuck...\n\nI'm super confused if I should go through with this or wait for something else to come along.\n\nAny advice/help is appreciated, thanks.
693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The jio home app often uses background data in my device. I often see notifs of download/upload in the notif bar. Is it downloading my data kr uploading it somewhere else? Or is it Stalin info?
696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Titled heading towards...  \nA friend and I shot random things in our daily routine for 30 days and this is what came about\n
700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The question pretty much summerize it but here is the whole rant. \n\nThere is a nestle godown in between my house and another house ( it's a residential area) . Atleast 3-4 times a week a huge container lorry is blocking the street.this guy who owns it seems to be the sole distributor in my district so random guys from all over our district come and go everyday. We can't even sit in our porch as there are always 4-5 random guys sitting outside the godown.( there is zero privacy in our own porch) we always close our windows(between our house and godown as they always keep it open and they can see right through our living room). Again no privacy...2 years ago that godown was also a house and the previous owner sold it to the godown guy who destroyed every room in their house to make it into one big room with only outerwall. for a whole year  we had to deal with constant hammering and drilling we thought it would be over once the rework is done but nope, it was just a beginning..my parents doesn't want to make it into a big thing so they are just keeping it in. Now my dad wants to spend money to block their view in our porch and window  by using large metal sheets( which I'm completely against it as it would pretty much block the air flow and make it insufferable to be in the house during summer.) Also why should we spend our money when they are in the wrong? What can I do to resolve this problem.? Any suggestions are welcome.\n\nEdit: it's most likely a nestle supplier who owns it and not nestle 
701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I am currently travelling in Samta Express (12807). I entered in the train in night i.e. 12:15 pm. The coach is really smelling bad. My coach is S4 and seat number is 2 near the Washroom and entry gate. I called on 139 to register my complaint but after every 5 mins of struggling by writing numbers (eg. Hindi ke liye 2 dabaye, safai se sambandhit shikayat ke liye 3 dabaye, aapki call adhikari ko fwd ki Jaa rhi hai) the call get disconnected. I literally called 10 times to that number and received same treatment. Then after getting tired I decided to sleep in foul smell ( coach was really smells like sulabh sochalaya). In the morning ticket checker came. I complained this matter to him and he said "sir ye humara department nahi hai aap 139 pe call kare". I asked him to call and do the complaint. He called to that number and got the same treatment. After some debate, he called an escort guy (name: RK Saxena, Designation: CTI). He said "Bhai tu Delhi Jaa Raha hai toh complaint mantri ko kar yaha nahi, Jo karna hai Karo mujhe farak nahi padta". These are his wordings. And still no action was taken. \n\nAll my luggage got wet. Spend the whole night with cockroaches. The smell literally tortured me the whole night. To escape the smell I opened the window and then got tortured by the chilly wind. Just praying to reach Delhi asap to escape the smell. I just want everyone to share this incident everywhere so that higher authorities should know how the officials behave with passengers and what is the real condition of the coach.
702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mr. Gautam Gambhir, BJP MP from Delhi, recently has been going around and giving interviews that he regrets not being in the army and instead being a cricketer.\n\nHe claims that by being in the army, he could have given better service to our nation.\n\nMr. Gambhir, who is now an MP, has a unique opportunity to stop living in regret by being one of 545 Lok Sabha Members. He has an opportunity to work 24x7 for the nation and its people.\n\nBut what does Mr. Gambhir do instead - play cricket &amp; rubbish leagues and be in the commentary box for every random series. Mind you, his net worth is north of Rs. 400 crores - enough to feed his next several generations.\n\nI just wanted to point out his hypocrisy.
703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Why not? \nIsn\031t it the right time, to stop these misleading narratives of these \034polluted politicians\035..? It has to be a two way or balanced concept, where both the parties are equally involved and informed at the same time, not when it\031s convenient or it\031s already too late, for the \034innocent people\035..?
709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I'm a Canadian expat in Cambodia who got my Canadian driver's license converted to a 1-year local one as I'm required to do (to be extended every year as long as I'm here). Yesterday, I tried to get an International Driver's Permit but the government clerk said Cambodia only converts these for 10-year license holders.\n\nI often travel to India and would like to rent a car. I'm used to Phnom Penh traffic so can handle driving there -- at least outside the largest cities. Is an IDP absolutely required there or are companies and the police pretty lenient as long as I show my Canadian and Cambodian licenses?\n\n&amp;#x200B;\n\nSincerely,\n\n&amp;#x200B;\n\nPhnom Pencil
710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Vasundhara Raje commands the loyalty of 25 MLAs in the state. Of she decides to play ball, BJP might see it's tally fall to 90 from the current 115.\n\nWith 8 Independent and 3 from BSP (most likely) the total tally would cross majority mark and BJP government will still have 101 seats.
714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 India, since Independence, has come a long way. It has cemented its position among the best and has gained respect from friends and foes alike.\nBut there is always room for improvement.\nWe, as a country, face several issues such as overpopulation and lack of basic amenities. I feel like the problems of India are more or less well known. But for the betterment of the country, we need to come up with solutions to these problems.\nI'd like to know about ideas and methods which you think might be able to bring a change in the country.
715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Title. After listening to her my mind becomes clean. It happened to me several times. I don't know anything about Bhram Kumaris but only got to know about her from a friend of mine. Her sayings are undeniable for me. Some of the things that I didn't found pratical in today's world is bowing in front of people. I have tried it but just made me shameless. I don't worry about respect which leads to get disrespected. Also because of this , motivation doesn't work on me. What are your thoughts about her.
716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Things have been quite heated here wrt immigration numbers. I am working here and my sibling has just graduated with Masters. It\031s getting very tough to find jobs even for 2-3 years experienced candidates (every application form is asking the question on whether you need a visa to work) \n\nGetting a £38200 salary for entry level candidates in order to be sponsored is very tough as the going rate is way below that. Graduate visa which allows up to 2 years of working (without company sponsorship) post your graduation is also being reviewed. All in all it\031s going to get tough and not better for next batch of students.
718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AMA  \n\n\nUpdate 1: I'll come back in a few hours and answer more :)\n\nUpdate 2: Have almost answered all top questions, will do one last session of answering tomorrow, 24 hours later after this post was published. \n\nhttps://preview.redd.it/d64896a75p4c1.jpg?width=2741&amp;format=pjpg&amp;auto=webp&amp;s=df77d3ba58644ce83ab79e19a1e02ce6c31a0fe7
722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I want to learn some musical instrument during my free time. Started with flute, I took a course on udemy with a bansuri. I couldn't keep up the breath for so long, and move the fingers fast enough. May be offline teacher is necessary for flute? I don't know.\n\nI am a fan of Sherlock BBC series and wanted to play violin. Hence looking for cheap violin to buy. My budget is INR 15K. If you have a used violin and want to sell it, let me know that too please.
723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hi everyone, I have a layover of 23 hrs at Qatar and have booked a hotel through the Discover Qatar site. Does anyone know if I need to apply for a visa beforehand or what's the procedure at the airport for visa on arrival? I googled this but am still not sure. There's also a transit visa if you're staying for less than 96 hrs but Idk if it allows leaving the airport 
725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I want to get HIV test done in India( Had blood transfusion done 2 years back). So wanted to check if i need doctors prescription to get it tested or can i just go to fortis/ apollo and ask them to test for HIV?
726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I always wanted to do (Masters in Sports Business Management) but had a hard time narrowing down the countries. The primary problem was finances and learning a language altogether. Hence, the US and Australia were out based on finances and the major European countries were out of the picture, because of the language. \n\nAnd as much as I've researched the US, UK and Australia are the three places where this course is valued the most and has a great scope overall. And with the States and Australia pretty much out of consideration, I think I've finally concluded choosing the UK as my preferred destination for this course. \n\nNow, to make the right decision, I need your help. I have a few questions. \n\n1. Is this a great investment basis for the course that I've selected? Are there any other countries that are much better for this course? \n\n2. Also generally, what are some things that I should know about the UK that not many people know?  \n\n3. Is the UK PR friendly? How does that work? \n\nOkay, I'm freaking out at this moment. Please let me know if you have any idea about the United Kingdom. Bless up!
727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I can only think of a few professions\024like lawyers, CAs, doctors\024where technical expertise is not really required to do your job effectively. For those in finance, marketing, sales, etc., how challenging is it as a non-tech professional to compete against individuals who possess both your domain knowledge and IT skills? Do you feel secure, or do you find yourself constantly striving to increase your knowledge in the tech field? \n\nI am asking this for myself. I am just so indecisive about what to do after BBA. I have no comp. background and the increasing use of tech in every space has got me very worried and anxious about my future. I am just half an year away from my graduation and I don't see myself getting a job. And don't even know what to do/ learn to change that. \n\nAny insights/advice would be helpful. Thank you.
728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It's been 2 months since I got laid off and yet to find a job. If anyone can refer me to their org. I'll be very grateful to them. I've 1 year of experience mainly with MERN and ready to learn anything new. I've shipped 0-1 applications and built CI/CD pipelines for deployment as well.\n\n 
732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I just want to know where these people dump their clothes because one thing I know, for sure, is that they are too insecure in themselves to be repeating outfits. So, where do they dispose their clothes??? I want to buy them! I mean thrift those Zara, H&amp;M, MANGO, LABEL RITU KUMAR, and maybe the brands I've never even heard of. \n\nI completely understand that being rich doesn't mean that they have style and that it's not going to be easy to get stylish products so easily, but I want to try.
733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \n\nHelloo, if there are any avg Lifafa enjoyers seeing this< There's a concert of his on 10th this week end, in Bangalore.\n\nThey have a deal where you can get 4 passes for 3600 so that comes to around 900 for one person. Individual passes are for 1200 and actually sold out.\n\nWe DO NOT have to go together, this is only to reduce the price paid individually for the tickets.\n\nSo if anybody is interested to go, please react to this message, help save monies ;-;
734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am not sure if this is a scam or something but I am wfh and have not received any calls or contactds from blue dart but they keep marking it is as I am not avaialble. \n\n&amp;#x200B;\n\nI have emailed them multiple times and tried calling them but no response. I also spoke to Headphonezone and they say they have escalated to bluedart manager. Also, it is not some remote location or address issue as Headphone zone delivered to the same address twice and picked up a return once without any issues. Has anyone else faced this issue?\n\nhttps://preview.redd.it/bzahyfx9bo4c1.png?width=1379&amp;format=png&amp;auto=webp&amp;s=0570d5348c7cb93e4b7ef69c5da4c82df0704bea
736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am no expert in this topic. However, one does not need to be in order to understand just how far behind we are in this race. Top ai researchers   like Ilya, Hinton, etc  say AGI  is probably going to be achieved in the next 5 years whereas ASI  in the next 10 to 15. This is not even an optimistic view. With models such as gpt-4 , google's upcoming gemini, Alibaba's qwen and hundreds of other ai models that china is developing ( most probably suck), it probably won't take much time for AGI. Countries like japan, South Korea etc  have the resource,  talent and also the know how to actively take part in the race with the hope of getting a small slice of the pie. Does India have any of the above things? I am not aware  of any significant tech innovations done in India. Most of our stuff that is tech heavy  is imported . Even Tejas which is apparently "made in India"  has its engines made by general electric. \n\nMy point is that this is a race. There will be 1 or 2 winners. Whoever achieves Singularity (ASI) will be in control of the world forever.India is just waaaay far behind is these kind of things.If we want to play a significant role, we should do something pretty soon. Time is not in our favour. We should be able to achieve ASI around the same time as US, China etc. Feels like an impossible task
737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I recently visited Singapore and the people there are absolutely pleasant. One aspect I have noticed is the absolute discipline and standards in men as compared to to Singaporean women who seem like the same old first world women who you find anywhere in the world. \n\nI believe the draft has helped Singaporean men gain leadership skills, sense of responsibility. Importantly it allows the country to get a volunteer labor force to help the country. I think we should have a draft. Imagine 30 million men every year who can be drafted to work on our infrastructure, plant trees, sweep garbage, protect animals. Your opinion???
739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Till 10-12 years back we could see so many new companies entering every sector be it cement be it automobiles be it aviation be it textiles be it chemicals be it pharmaceuticals and so on\n\nLook at how things have been in last 4-5 years; one after another many entrants have either exited India or are struggling to even keep 1-2% like market shares On the contrary only few big houses have managed to keep close to 90% like market shares.\n\nFew players means less competition means pricing is at will. That is what is happening \n\nAre we moving back to License Raj or Monopoly like Era\n\n&amp;#x200B;
740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n\nI recently noticed that my employer is deducting Gratuity from my monthly salary, along with other deductions like Medical, PF, and PT. I wanted to check with you all if this is a common practice or if it raises any legal concerns.\n\nMy monthly salary is 2.4 LPA (20,000 rs per month), and the deductions include:\n\n* Medical: 400 rs\n* PF: 984 rs\n* PT: 200 rs\n* Gratuity: 394 rs\n\nI'm not sure if deducting Gratuity on a monthly basis is standard, and I'm concerned about the legality of this practice. Could someone shed some light on this or share their experiences? Thanks in advance!
742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hi, we are planning a trip to India in March, I\031m confused about what vaccinations I need to get for my 4 year old, she\031s up to date with all vaccines in the UK and also had the BCG vaccine as a baby as recommended due to having the high chance of travelling to India (her father is Indian). \nI can\031t find information online about her age group specifically as I\031m confused about what she\031s had and what she needs. \nI\031ll be sorting my vaccines as well as I don\031t remember what I had last time I went to India as it was about 8 years ago, just more concerned about what she needs. \nIf anyone has any experience I\031ll be grateful to know, thanks!\nEdited to add if it helps we will be mostly in the Punjab area with a trip to Delhi and Agra. 
743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hey guys, I\031m not sure if this is the right place, but I have an investment that was set up in my name by my grandfather. I was born in India, and I know it was setup thru RBI though the exact nature and details of the investment are currently unknown to me (it may have been a mutual fund or a bond, but not sure. I know my grandfather used the word "scheme" which is vague)\n\nTo provide some context:\n\n\\* Investment Timeline: I believe this investment scheme was originally made between 2000-2004, though it might have been renewed in some capacity since then, around 2022 .\n\n\\*Last Interaction: I personally visited the RBI in a Chennai branch with my grandfather in March 2022 to provide certain identification documents, including my OCI card and other relevant details (I was an NRI and a minor at time of original investment but now am US citizen and adult)\n\nGiven circumstances, I am unable to retrieve further specifics about this investment from family sources.\n\nI tried reaching to RBI Retail, but they just said "they will only handle retail inquiries".\n\nAnyone know how I can figure out where to access this account? It looks like RBI has so many different departments I don't even know where to start\n\ntl;dr: I had an account setup in my name as a kid in India for some scheme. How do I figure out what and where it is?
745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       &gt;The government has amended the GST law, making it mandatory for overseas online gaming companies to register in India from October 1. In August, the GST Council clarified that 28 per cent GST would be levied on the full value of bets placed on online gaming platforms. Since then, many gaming companies received either an intimation notice or a show cause notice for short payment of GST.\n\n&gt;Amended legal provisions and rules for online gaming, horse racing and casinos came into effect from October 1, bringing into effect the 28 per cent GST at face value at entry level and mandatory registration for offshore online gaming companies in India. The online gaming companies claim they were paying taxes at the rate of 18 per cent as the games played on the platform were \030games of skill\031.
746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This thought is so so stuck in mind from past few days.\nso I was wondering why every year the farmers are seen complaining about bad crops? not even a single time I have seen a news about farmers being happy about their  yield! and specially farmers from North do this (except Punjab haryana ). There is political reason for this being trending and I am well aware of that. but I seriously think that the land in the northern India isn't that much good for farming. Everyone has problems every year . even from the Ganga plains we get news and reports of farmers being unhappy. \non the other hand the farmers of the southern region and North Eastern regions are never seen complaining\nare they really that muchh fulfilled or they don't get proper attention? \nbut geographical conditions favor farming there a lot and they are definitely more educated and know about the crops they need to grow.\nI think problem must be in the present geography of North that farmers are suffering and they seriously need to find alternatives for them.
    subreddit comments
1       india      102
2       india       21
3       india       44
4       india      104
5       india        0
6       india        3
7       india      172
8       india        2
9       india        9
10      india        2
11      india        1
12      india        1
13      india        1
14      india        8
15      india       27
16      india        1
17      india        1
18      india      159
19      india       10
20      india        1
21      india        7
22      india       62
23      india        3
24      india        4
25      india        2
26      india      124
27      india       77
28      india      258
29      india        3
30      india       11
31      india       13
32      india        4
33      india        5
34      india        2
35      india       26
36      india        4
37      india        2
38      india       13
39      india      104
40      india        1
41      india        1
42      india        1
43      india       22
44      india       12
45      india        1
46      india      115
47      india       25
48      india        5
49      india        1
50      india        1
51      india       10
52      india        8
53      india        1
54      india       88
55      india        5
56      india        2
57      india       55
58      india        5
59      india        5
60      india       22
61      india        0
62      india        2
63      india        1
64      india        1
65      india        1
66      india        1
67      india       16
68      india        0
69      india        1
70      india        1
71      india        2
72      india        1
73      india        1
74      india        1
75      india        5
76      india      317
77      india        1
78      india       97
79      india       13
80      india       51
81      india        1
82      india       29
83      india        2
84      india       92
85      india       36
86      india        0
87      india        1
88      india        0
89      india        7
90      india       73
91      india        1
92      india        9
93      india       13
94      india        3
95      india       43
96      india       15
97      india        0
98      india       25
99      india        1
100     india       11
101     india        2
102     india       88
103     india        4
104     india        1
105     india        2
106     india        5
107     india        3
108     india        3
109     india        3
110     india        3
111     india        1
112     india        7
113     india       49
114     india        3
115     india      101
116     india       34
117     india        9
118     india        1
119     india        1
120     india        3
121     india        3
122     india        7
123     india        2
124     india      181
125     india        7
126     india        0
127     india        7
128     india        4
129     india       99
130     india        7
131     india        9
132     india       57
133     india        2
134     india        3
135     india       15
136     india        1
137     india        1
138     india       10
139     india       15
140     india      116
141     india        9
142     india       12
143     india        5
144     india      108
145     india        7
146     india      115
147     india       38
148     india       45
149     india      606
150     india        1
151     india       48
152     india      302
153     india       33
154     india        0
155     india        9
156     india        1
157     india       14
158     india        1
159     india      282
160     india        1
161     india        1
162     india        1
163     india        1
164     india        1
165     india        1
166     india       41
167     india        1
168     india        8
169     india        0
170     india       21
171     india        6
172     india      586
173     india        1
174     india        2
175     india        1
176     india        1
177     india        0
178     india        1
179     india       91
180     india        1
181     india        1
182     india       31
183     india        2
184     india        2
185     india       22
186     india        1
187     india        1
188     india     1382
189     india        5
190     india        1
191     india      245
192     india        1
193     india        1
194     india      511
195     india        1
196     india        1
197     india        1
198     india       26
199     india        4
200     india        5
201     india        1
202     india        1
203     india       18
204     india       21
205     india        0
206     india        2
207     india       87
208     india        4
209     india        0
210     india        1
211     india        1
212     india        1
213     india      173
214     india        0
215     india        1
216     india        1
217     india       14
218     india        1
219     india        1
220     india        1
221     india        5
222     india        1
223     india        1
224     india        1
225     india       17
226     india       29
227     india        1
228     india        6
229     india        1
230     india        9
231     india       43
232     india       30
233     india        1
234     india        1
235     india       36
236     india        8
237     india        3
238     india      163
239     india        1
240     india        1
241     india       18
242     india        1
243     india      102
244     india        1
245     india        5
246     india        1
247     india        2
248     india        5
249     india        8
250     india      272
251     india        1
252     india      108
253     india       31
254     india       34
255     india        3
256     india        1
257     india      353
258     india        1
259     india        1
260     india       14
261     india       13
262     india        5
263     india        2
264     india        3
265     india        2
266     india        1
267     india       16
268     india        1
269     india        1
270     india        1
271     india        1
272     india        1
273     india        1
274     india       71
275     india      118
276     india        6
277     india        7
278     india        1
279     india        1
280     india        1
281     india        1
282     india        1
283     india        1
284     india       11
285     india       14
286     india        1
287     india       23
288     india        1
289     india        1
290     india        1
291     india        1
292     india      144
293     india      122
294     india        8
295     india      176
296     india      374
297     india        5
298     india       10
299     india        2
300     india        1
301     india        6
302     india       82
303     india        1
304     india        7
305     india        2
306     india        1
307     india        1
308     india       11
309     india        0
310     india        4
311     india       21
312     india        1
313     india      399
314     india       46
315     india      155
316     india        1
317     india        1
318     india        4
319     india        1
320     india        1
321     india       31
322     india        5
323     india      433
324     india        2
325     india        1
326     india       16
327     india        7
328     india        1
329     india       11
330     india       78
331     india        0
332     india        0
333     india        8
334     india      110
335     india        1
336     india       77
337     india        1
338     india        6
339     india        4
340     india        7
341     india      174
342     india        7
343     india        8
344     india       12
345     india        3
346     india       27
347     india        2
348     india        9
349     india        6
350     india       28
351     india        1
352     india        1
353     india        1
354     india        1
355     india        4
356     india        4
357     india       12
358     india       53
359     india       15
360     india        4
361     india       37
362     india        1
363     india        1
364     india        4
365     india        3
366     india        3
367     india       46
368     india        1
369     india        4
370     india        1
371     india        7
372     india        1
373     india        1
374     india      145
375     india       47
376     india        8
377     india       14
378     india       10
379     india       10
380     india        5
381     india        3
382     india        1
383     india        0
384     india       18
385     india        7
386     india        0
387     india       11
388     india       76
389     india        1
390     india        2
391     india        7
392     india        6
393     india       17
394     india        0
395     india       66
396     india        9
397     india        2
398     india        0
399     india        7
400     india        1
401     india       33
402     india      367
403     india       53
404     india       26
405     india        1
406     india       13
407     india        3
408     india       30
409     india        1
410     india      134
411     india       80
412     india       58
413     india        1
414     india        0
415     india        1
416     india        1
417     india        6
418     india      358
419     india        2
420     india        3
421     india        7
422     india        4
423     india      109
424     india        1
425     india      264
426     india        3
427     india        4
428     india        1
429     india        2
430     india        1
431     india        1
432     india        0
433     india        1
434     india        1
435     india        1
436     india        6
437     india        1
438     india        3
439     india        1
440     india        1
441     india        4
442     india        1
443     india        5
444     india        9
445     india        1
446     india        1
447     india        1
448     india      131
449     india        1
450     india        1
451     india      150
452     india        4
453     india        1
454     india       36
455     india       64
456     india        1
457     india      190
458     india       31
459     india        9
460     india       36
461     india        1
462     india        1
463     india        1
464     india        1
465     india        7
466     india        1
467     india      109
468     india        2
469     india       82
470     india        8
471     india        3
472     india      224
473     india        3
474     india        1
475     india        6
476     india        6
477     india        9
478     india       38
479     india       10
480     india       96
481     india        9
482     india        3
483     india        6
484     india        7
485     india       40
486     india      114
487     india       27
488     india      111
489     india       72
490     india       10
491     india       54
492     india        1
493     india       20
494     india      172
495     india        1
496     india        1
497     india        1
498     india        1
499     india        1
500     india        1
501     india        1
502     india        1
503     india        2
504     india        1
505     india        0
506     india        1
507     india       66
508     india       20
509     india        2
510     india        5
511     india       75
512     india       21
513     india       30
514     india       39
515     india        3
516     india        1
517     india        1
518     india        1
519     india      115
520     india       61
521     india        1
522     india        1
523     india        1
524     india      180
525     india        9
526     india       70
527     india       48
528     india      142
529     india        1
530     india        0
531     india        1
532     india       38
533     india        1
534     india       67
535     india        1
536     india        1
537     india        1
538     india        1
539     india       55
540     india       55
541     india        1
542     india        3
543     india      741
544     india      136
545     india      106
546     india       10
547     india        3
548     india       11
549     india        2
550     india        1
551     india        1
552     india       35
553     india        2
554     india      111
555     india        9
556     india       12
557     india        8
558     india      123
559     india        7
560     india      128
561     india        1
562     india        0
563     india      112
564     india        4
565     india       52
566     india        2
567     india        5
568     india      181
569     india       29
570     india        3
571     india       44
572     india        8
573     india       51
574     india        7
575     india        4
576     india        7
577     india        3
578     india        2
579     india        3
580     india        8
581     india        2
582     india        1
583     india        1
584     india        1
585     india        3
586     india     1200
587     india        3
588     india        4
589     india        1
590     india        1
591     india        1
592     india        6
593     india        1
594     india        0
595     india        0
596     india        3
597     india        4
598     india        2
599     india       24
600     india        9
601     india        2
602     india        9
603     india        4
604     india      182
605     india        1
606     india       15
607     india       12
608     india        3
609     india        6
610     india       17
611     india        1
612     india        6
613     india       19
614     india       61
615     india        6
616     india        1
617     india       16
618     india      282
619     india        1
620     india        1
621     india       20
622     india      139
623     india        0
624     india        3
625     india       94
626     india        1
627     india       25
628     india        1
629     india       65
630     india        5
631     india        2
632     india       14
633     india        1
634     india        6
635     india        0
636     india        6
637     india       18
638     india        9
639     india      160
640     india        2
641     india        1
642     india        1
643     india       11
644     india       14
645     india        1
646     india        6
647     india      440
648     india        0
649     india        1
650     india        0
651     india        1
652     india       11
653     india        1
654     india        1
655     india        0
656     india       14
657     india       11
658     india        3
659     india        0
660     india       44
661     india        3
662     india        0
663     india        2
664     india        2
665     india       17
666     india        1
667     india       11
668     india        8
669     india        1
670     india        2
671     india        6
672     india        1
673     india        5
674     india       35
675     india        0
676     india        0
677     india        0
678     india        4
679     india        9
680     india        1
681     india        4
682     india       11
683     india      355
684     india       22
685     india        0
686     india       19
687     india      161
688     india        4
689     india        9
690     india        4
691     india        9
692     india        2
693     india        0
694     india        0
695     india        1
696     india        0
697     india       11
698     india      287
699     india       11
700     india       20
701     india      159
702     india       85
703     india        1
704     india       89
705     india      178
706     india       73
707     india        2
708     india        2
709     india        2
710     india        0
711     india        3
712     india       10
713     india        1
714     india       44
715     india        8
716     india        0
717     india        5
718     india        1
719     india        0
720     india        0
721     india     1574
722     india       10
723     india       72
724     india        1
725     india       28
726     india        4
727     india        7
728     india       17
729     india        3
730     india        0
731     india        1
732     india       57
733     india        2
734     india        0
735     india        5
736     india       13
737     india        3
738     india       14
739     india        8
740     india       11
741     india        5
742     india        1
743     india        2
744     india        2
745     india        0
746     india       35
747     india        3
                                                                                                    url
1        https://www.reddit.com/r/india/comments/1854t1k/big_fat_weddings_are_indias_soft_power_abroad/
2       https://www.reddit.com/r/india/comments/18546p2/collapsed_indian_tunnel_had_no_safety_exit_was/
3     https://www.reddit.com/r/india/comments/18537t3/bengaluru_airport_wont_ask_you_to_put_gadgets_in/
4      https://www.reddit.com/r/india/comments/18527sq/ndtv_class_4_boys_attack_classmate_with_compass/
5       https://www.reddit.com/r/india/comments/1850sdw/happening_tomorrow_join_us_as_we_dive_into_the/
6      https://www.reddit.com/r/india/comments/18508u2/4_months_26_victims_sham_stock_scheme_pulls_off/
7     https://www.reddit.com/r/india/comments/18501uq/will_rename_hyderabad_as_bhagyangar_if_bjp_comes/
8                                https://www.reddit.com/r/india/comments/184yaep/decathlon_is_pathetic/
9       https://www.reddit.com/r/india/comments/184xzk5/48_of_complaints_on_national_consumer_helpline/
10            https://www.reddit.com/r/india/comments/184xpmh/if_you_ever_have_a_chance_to_leave_india/
11          https://www.reddit.com/r/india/comments/184xpcp/nris_and_ex_nris_how_do_you_view_india_now/
12     https://www.reddit.com/r/india/comments/184xmtm/iffi_censorship_row_late_bjp_mlas_poem_on_caste/
13           https://www.reddit.com/r/india/comments/184x0gs/its_over_what_are_we_going_to_do_about_it/
14    https://www.reddit.com/r/india/comments/184wlwb/apart_from_jaitely_gadkari_no_one_i_inside_modis/
15     https://www.reddit.com/r/india/comments/184wc7a/anyone_who_wants_to_adopt_these_cuties_gurugram/
16                 https://www.reddit.com/r/india/comments/184w9oi/indian_passport_renewal_from_canada/
17     https://www.reddit.com/r/india/comments/184w24c/ever_thought_about_the_lack_of_telugu_themes_in/
18     https://www.reddit.com/r/india/comments/184vgid/troubled_by_growing_trend_among_big_families_to/
19                           https://www.reddit.com/r/india/comments/184v53v/wedding_venue_suggestions/
20        https://www.reddit.com/r/india/comments/184v1s0/is_agoda_reliable_for_booking_flight_tickets/
21   https://www.reddit.com/r/india/comments/184u8th/tiger_from_rajasthan_enters_kuno_national_park_no/
22       https://www.reddit.com/r/india/comments/184tqtg/bar_on_evening_classes_for_girls_is_likely_to/
23                https://www.reddit.com/r/india/comments/1842n27/cat_heavily_injured_need_urgent_help/
24   https://www.reddit.com/r/india/comments/1843ihg/men_in_india_who_have_extrawide_feet_where_do_you/
25                  https://www.reddit.com/r/india/comments/1844635/why_dont_we_have_an_alloneone_card/
26    https://www.reddit.com/r/india/comments/184t3du/malaysia_to_allow_visafree_entry_to_indians_from/
27        https://www.reddit.com/r/india/comments/184s016/the_month_of_november_1971_52_years_ago_very/
28       https://www.reddit.com/r/india/comments/184eozy/do_you_consider_it_degrading_to_women_to_tell/
29    https://www.reddit.com/r/india/comments/184he2h/hey_guys_can_someone_help_me_with_a_referral_for/
30             https://www.reddit.com/r/india/comments/184ih7x/which_laptop_brand_is_the_best_in_india/
31    https://www.reddit.com/r/india/comments/184jydx/scamsters_paid_me_money_for_their_tasks_what_now/
32                          https://www.reddit.com/r/india/comments/184kucw/flight_rescheduling_indigo/
33                  https://www.reddit.com/r/india/comments/184ncba/a_friend_needs_to_continue_therapy/
34         https://www.reddit.com/r/india/comments/184po5a/video_rescuers_try_new_tack_to_reach_indian/
35               https://www.reddit.com/r/india/comments/184hsx2/why_75_of_indian_women_are_unemployed/
36       https://www.reddit.com/r/india/comments/184hpyc/why_i_am_not_just_an_indian_i_carry_an_indian/
37       https://www.reddit.com/r/india/comments/184ew5s/cousin_took_a_loan_but_couldnt_pay_it_back_as/
38   https://www.reddit.com/r/india/comments/184etzb/the_benefits_of_a_lousy_passport_having_to_choose/
39   https://www.reddit.com/r/india/comments/184ersl/india_wont_disappoint_says_modi_as_he_invites_the/
40     https://www.reddit.com/r/india/comments/184dt7b/there_is_going_to_be_loksabha_election_in_india/
41         https://www.reddit.com/r/india/comments/184d3tw/hindi_speech_to_text_app_recommendation_for/
42      https://www.reddit.com/r/india/comments/184d3hw/question_for_all_having_homebakery_business_in/
43         https://www.reddit.com/r/india/comments/1846yna/15_years_of_2611_one_of_the_heroe_who_saved/
44         https://www.reddit.com/r/india/comments/1847t97/just_a_year_after_modijis_speech_on_freebie/
45   https://www.reddit.com/r/india/comments/1847319/what_are_the_employment_laws_regarding_quitting_a/
46                     https://www.reddit.com/r/india/comments/1847as0/2611_never_forgive_never_forget/
47                                   https://www.reddit.com/r/india/comments/1847231/lucky_to_be_alive/
48   https://www.reddit.com/r/india/comments/186gl5b/new_sim_card_rules_to_be_followed_in_india_from_1/
49          https://www.reddit.com/r/india/comments/186gj69/a_hopless_indian_youth_complains_about_the/
50                      https://www.reddit.com/r/india/comments/186ghqs/refurbished_laptop_from_amazon/
51       https://www.reddit.com/r/india/comments/186gamc/milk_egg_meat_wool_output_increased_in_202223/
52        https://www.reddit.com/r/india/comments/186g8im/cancer_deaths_in_india_due_to_avoidable_risk/
53     https://www.reddit.com/r/india/comments/186fxlk/what_to_do_something_different_in_goa_this_time/
54        https://www.reddit.com/r/india/comments/186fanc/experts_tell_what_north_india_can_learn_from/
55      https://www.reddit.com/r/india/comments/186f74l/all_41_indian_labourers_rescued_from_collapsed/
56     https://www.reddit.com/r/india/comments/1861kga/how_to_prove_work_experience_when_working_for_a/
57                   https://www.reddit.com/r/india/comments/1861jhl/unkown_caller_harassing_my_sister/
58                   https://www.reddit.com/r/india/comments/185x62n/instructions_for_a_trip_to_mumbai/
59                        https://www.reddit.com/r/india/comments/185vrh4/confused_dishwasher_in_india/
60    https://www.reddit.com/r/india/comments/185vqb7/why_are_other_vegetarian_states_more_tolerant_of/
61       https://www.reddit.com/r/india/comments/186d9yz/hiring_stress_campuses_see_delayed_onboarding/
62      https://www.reddit.com/r/india/comments/186aoio/would_love_some_information_on_these_thank_you/
63      https://www.reddit.com/r/india/comments/1869jtm/question_for_indian_expats_two_work_permits_at/
64          https://www.reddit.com/r/india/comments/1867xqy/what_are_some_of_the_top_indian_inventions/
65          https://www.reddit.com/r/india/comments/1866nb0/how_can_i_earn_as_a_college_student_online/
66        https://www.reddit.com/r/india/comments/1866mvw/actor_randeep_hooda_to_marry_lin_laishram_on/
67                           https://www.reddit.com/r/india/comments/1866i8h/adoption_in_delhi_ncr_dog/
68         https://www.reddit.com/r/india/comments/1866hlw/indian_air_force_eyes_future_frontiers_with/
69                https://www.reddit.com/r/india/comments/1866fe1/question_regarding_doctor_statistics/
70      https://www.reddit.com/r/india/comments/18657df/adani_group_looking_to_exit_fmcg_joint_venture/
71                     https://www.reddit.com/r/india/comments/18646ap/freelancers_firc_document_issue/
72               https://www.reddit.com/r/india/comments/18643z1/everyday_i_feel_like_a_bitch_a_coward/
73                           https://www.reddit.com/r/india/comments/1863blq/does_paytm_delete_reviews/
74      https://www.reddit.com/r/india/comments/1862ax1/what_is_your_opinion_on_the_misinformation_and/
75    https://www.reddit.com/r/india/comments/18622x0/norms_flouted_tectonic_faultlines_ignored_lapses/
76         https://www.reddit.com/r/india/comments/1861sm8/statistics_of_registered_rape_cases_in_2021/
77                              https://www.reddit.com/r/india/comments/1860yge/getting_hydrology_gigs/
78                     https://www.reddit.com/r/india/comments/1860iiz/lorum_imposum_executive_manager/
79            https://www.reddit.com/r/india/comments/185zmh6/malayali_space_scientist_vr_lalithambika/
80        https://www.reddit.com/r/india/comments/185z9ap/meet_arnold_dix_tunnelling_expert_india_will/
81      https://www.reddit.com/r/india/comments/185yqv9/lok_sabha_polls_bjp_says_will_contest_26_of_48/
82             https://www.reddit.com/r/india/comments/185yjiz/india_is_seeing_a_massive_aviation_boom/
83      https://www.reddit.com/r/india/comments/185ydae/whats_an_accurate_way_to_find_out_the_value_of/
84       https://www.reddit.com/r/india/comments/185ybj8/all_41_workers_trapped_inside_silkyara_tunnel/
85                    https://www.reddit.com/r/india/comments/185xwdu/how_can_we_better_plan_for_death/
86    https://www.reddit.com/r/india/comments/185x8t6/mazdoorkisan_mahapadav_calls_for_bigger_movement/
87        https://www.reddit.com/r/india/comments/185wn99/explained_what_is_the_new_discard_income_tax/
88      https://www.reddit.com/r/india/comments/185wkn0/iphone_maker_hon_hai_plans_16_billion_in_india/
89       https://www.reddit.com/r/india/comments/185wkak/india_to_launch_firstever_auction_of_critical/
90        https://www.reddit.com/r/india/comments/185voqr/2_dalits_beaten_up_urinated_on_in_tamil_nadu/
91     https://www.reddit.com/r/india/comments/185vm8k/centre_squeezing_funds_for_sc_scholarship_leads/
92   https://www.reddit.com/r/india/comments/185vko9/gujarat_dalit_woman_beaten_to_death_by_men_booked/
93              https://www.reddit.com/r/india/comments/185u98j/where_was_your_family_during_partition/
94          https://www.reddit.com/r/india/comments/185ucgr/how_and_why_india_checkmated_chinese_giant/
95                           https://www.reddit.com/r/india/comments/185u2xt/is_this_note_of_any_value/
96     https://www.reddit.com/r/india/comments/185tb0u/indian_researchers_paid_17mn_to_publish_in_open/
97    https://www.reddit.com/r/india/comments/185t98h/highdose_covid_treatment_less_effective_in_india/
98                 https://www.reddit.com/r/india/comments/185sdc9/olx_sellers_using_flipkart_for_scam/
99     https://www.reddit.com/r/india/comments/185sb64/igcse_certifying_statement_for_non_ecr_passport/
100       https://www.reddit.com/r/india/comments/185rj8t/panicking_because_simplpay_paid_for_my_order/
101  https://www.reddit.com/r/india/comments/185sa8k/life_pro_tip_for_road_rage_incident_keep_a_pepper/
102     https://www.reddit.com/r/india/comments/185rter/indian_rescuers_break_through_tunnel_debris_to/
103       https://www.reddit.com/r/india/comments/184zu73/does_gender_play_a_role_in_having_interfaith/
104         https://www.reddit.com/r/india/comments/1850rnp/question_regarding_possible_flight_or_visa/
105                                           https://www.reddit.com/r/india/comments/1850ybe/fdx_scam/
106                 https://www.reddit.com/r/india/comments/1851698/ola_s1_air_vs_s1_pro_vs_ather_450x/
107      https://www.reddit.com/r/india/comments/1851csz/distance_course_in_psychology_recommendations/
108          https://www.reddit.com/r/india/comments/1851vq8/have_you_ever_called_this_stationary_item/
109                              https://www.reddit.com/r/india/comments/1851yta/distance_mba_worth_it/
110                         https://www.reddit.com/r/india/comments/185r6u4/planning_a_trip_to_gokarna/
111        https://www.reddit.com/r/india/comments/1852m21/project_help_election_manifesto_of_congress/
112      https://www.reddit.com/r/india/comments/1853k08/stuff_better_to_buy_abroad_in_india_vs_the_us/
113         https://www.reddit.com/r/india/comments/185r307/gandhi_was_mahapurush_of_last_century_modi/
114                https://www.reddit.com/r/india/comments/185qq6m/does_anyone_know_what_music_this_is/
115         https://www.reddit.com/r/india/comments/185pn8d/is_it_my_fault_that_i_am_well_mannered_guy/
116    https://www.reddit.com/r/india/comments/185oqc4/advice_on_making_indian_colleagues_feel_welcome/
117                https://www.reddit.com/r/india/comments/185opwi/post_retirement_options_for_parents/
118    https://www.reddit.com/r/india/comments/185o6zv/rishikeshkarnprayag_rail_project_under_scrutiny/
119  https://www.reddit.com/r/india/comments/185o080/good_health_insurance_plan_to_buy_when_you_are_in/
120          https://www.reddit.com/r/india/comments/18586ak/til_zomato_is_not_liable_for_you_delivery/
121                 https://www.reddit.com/r/india/comments/1855ue0/employer_denying_maternity_benefit/
122   https://www.reddit.com/r/india/comments/18559as/my_dad_sexually_assaulted_me_till_i_was_12_years/
123          https://www.reddit.com/r/india/comments/1854zop/health_insurance_struggle_seeking_support/
124                      https://www.reddit.com/r/india/comments/185qnyc/does_this_coin_have_any_value/
125   https://www.reddit.com/r/india/comments/185qcwg/the_broadcasting_bill_2023_wants_to_regulate_ott/
126       https://www.reddit.com/r/india/comments/185qci3/public_audit_ensures_funds_are_wellspent_for/
127      https://www.reddit.com/r/india/comments/185qce9/people_who_started_a_business_partnering_with/
128                      https://www.reddit.com/r/india/comments/185q9wl/feels_like_zomato_scamming_me/
129  https://www.reddit.com/r/india/comments/185oqt4/neet_aspirant_from_west_bengal_found_dead_in_kota/
130                       https://www.reddit.com/r/india/comments/18597vb/people_who_have_eye_floaters/
131    https://www.reddit.com/r/india/comments/185gkvs/the_insane_light_show_at_the_church_festival_of/
132                           https://www.reddit.com/r/india/comments/185iggu/how_to_get_my_money_back/
133         https://www.reddit.com/r/india/comments/185a0zp/society_requesting_to_pay_extra_repair_fee/
134         https://www.reddit.com/r/india/comments/185d1zh/student_traveling_from_us_to_india_luggage/
135        https://www.reddit.com/r/india/comments/185bv0f/are_cbse_schools_all_over_india_this_shitty/
136  https://www.reddit.com/r/india/comments/185gmhw/i_made_a_subreddit_related_to_mental_health_check/
137   https://www.reddit.com/r/india/comments/185jpis/short_5_min_survey_towards_all_citizens_of_india/
138        https://www.reddit.com/r/india/comments/185led5/good_gift_ideas_for_new_born_babies_and_new/
139                              https://www.reddit.com/r/india/comments/185mb3d/want_to_join_politics/
140      https://www.reddit.com/r/india/comments/185n4za/to_curb_fraud_4hour_delay_likely_in_first_upi/
141                                    https://www.reddit.com/r/india/comments/185mpd1/old_indian_coin/
142   https://www.reddit.com/r/india/comments/185m62z/cnbctv18_passenger_finds_seat_cushion_missing_on/
143  https://www.reddit.com/r/india/comments/185jlch/can_anyone_tell_me_this_piece_of_music_voice_memo/
144       https://www.reddit.com/r/india/comments/185lgjv/how_uttar_pradeshs_halal_ban_has_plunged_the/
145  https://www.reddit.com/r/india/comments/1857pe3/tata_ordered_to_cough_up_210m_in_code_theft_trial/
146       https://www.reddit.com/r/india/comments/1857n0j/who_was_building_the_uttarakhand_tunnel_that/
147  https://www.reddit.com/r/india/comments/185658r/good_people_of_india_please_help_me_translate_the/
148                       https://www.reddit.com/r/india/comments/187gez2/regretting_my_life_decisions/
149         https://www.reddit.com/r/india/comments/187ghyi/is_this_some_kind_of_scam_received_5k_from/
150                   https://www.reddit.com/r/india/comments/187f9u8/looking_for_a_twowheeler_scooter/
151    https://www.reddit.com/r/india/comments/187ezu0/iitm_suspends_professor_ashish_holds_him_solely/
152   https://www.reddit.com/r/india/comments/187eua0/capitalism_based_on_free_market_only_solution_to/
153        https://www.reddit.com/r/india/comments/187errp/indian_student_living_in_new_jersey_fatally/
154    https://www.reddit.com/r/india/comments/187erh9/indias_transnational_repression_detailed_in_new/
155  https://www.reddit.com/r/india/comments/187emq6/lucknow_crime_news_social_media_star_ajeet_maurya/
156      https://www.reddit.com/r/india/comments/187eed7/andaman_and_nicobar_travel_within_the_islands/
157    https://www.reddit.com/r/india/comments/187dket/do_you_think_a_policy_like_this_will_get_rid_of/
158     https://www.reddit.com/r/india/comments/187cwpq/why_dont_we_have_women_selling_goal_gappas_and/
159  https://www.reddit.com/r/india/comments/187cmll/sikh_guy_got_beaten_up_with_belts_for_refusing_to/
160           https://www.reddit.com/r/india/comments/187ca77/whom_to_approach_for_the_ews_certificate/
161     https://www.reddit.com/r/india/comments/187c85h/a_nation_is_only_as_good_as_its_citizens_and_i/
162     https://www.reddit.com/r/india/comments/187c732/what_are_your_views_for_india_when_it_comes_to/
163                   https://www.reddit.com/r/india/comments/187bvui/questions_about_sikhs_and_hindus/
164       https://www.reddit.com/r/india/comments/187bj7n/seeking_advice_for_a_serene_snowy_retreat_in/
165          https://www.reddit.com/r/india/comments/187b7u8/where_to_celebrate_christmas_and_new_year/
166   https://www.reddit.com/r/india/comments/187an29/found_this_45_year_old_dairy_that_my_father_used/
167      https://www.reddit.com/r/india/comments/187amth/what_precautions_to_take_while_one_is_selling/
168      https://www.reddit.com/r/india/comments/1876283/sc_to_consider_laying_down_guidelines_on_when/
169          https://www.reddit.com/r/india/comments/1875q36/a_genetic_testing_revolution_is_on_indian/
170  https://www.reddit.com/r/india/comments/1875j8v/canada_us_top_2_study_destinations_for_indians_uk/
171    https://www.reddit.com/r/india/comments/18730m9/madurai_caste_crime_dalits_including_5yrold_boy/
172  https://www.reddit.com/r/india/comments/1872pv2/india_accidentally_hired_a_dea_agent_to_kill_sikh/
173    https://www.reddit.com/r/india/comments/1871yhu/how_do_northeast_men_feel_about_punjabi_or_even/
174                                https://www.reddit.com/r/india/comments/1870pcj/help_me_find_a_reel/
175          https://www.reddit.com/r/india/comments/1870noz/kaala_paani_review_handsomelyproduced_and/
176   https://www.reddit.com/r/india/comments/1870dpv/thinking_of_moving_back_to_india_after_living_in/
177         https://www.reddit.com/r/india/comments/186xo52/planning_a_trip_to_manali_in_late_december/
178                      https://www.reddit.com/r/india/comments/186xkww/feeling_betrayed_by_relatives/
179    https://www.reddit.com/r/india/comments/186x3fr/if_10_mins_of_azaan_causes_noise_pollution_what/
180      https://www.reddit.com/r/india/comments/186wurd/hello_nonpierced_fellas_where_do_you_buy_your/
181          https://www.reddit.com/r/india/comments/186wagv/song_translation_request_hindi_to_english/
182   https://www.reddit.com/r/india/comments/186w1o1/jk_police_book_nit_student_for_hurting_religious/
183         https://www.reddit.com/r/india/comments/186w02y/manipur_s_oldest_armed_group_unlf_renounce/
184  https://www.reddit.com/r/india/comments/186ujtz/90_passengers_aboard_bharat_gaurav_train_complain/
185     https://www.reddit.com/r/india/comments/186u7bp/gautam_adanis_wealth_soars_65_billion_in_a_day/
186             https://www.reddit.com/r/india/comments/186txnd/how_to_spend_time_with_my_grandparents/
187     https://www.reddit.com/r/india/comments/186tf2a/these_ai_generated_scam_ads_are_getting_normal/
188          https://www.reddit.com/r/india/comments/186tc63/how_does_your_spotify_wrapped_looks_india/
189     https://www.reddit.com/r/india/comments/186rc8s/question_for_all_having_homebakery_business_in/
190                               https://www.reddit.com/r/india/comments/186psuj/need_internship_help/
191        https://www.reddit.com/r/india/comments/186pji7/are_most_indian_men_disgusting_or_is_this_a/
192                     https://www.reddit.com/r/india/comments/186pan6/stream_advice_forensic_science/
193           https://www.reddit.com/r/india/comments/186ssna/will_we_ever_see_giant_it_centres_is_ncr/
194   https://www.reddit.com/r/india/comments/186sndr/us_attorney_announces_charges_in_connection_with/
195                       https://www.reddit.com/r/india/comments/186smxt/travel_agency_trying_to_scam/
196                        https://www.reddit.com/r/india/comments/186sjdf/most_social_cities_in_india/
197   https://www.reddit.com/r/india/comments/186sim1/call_for_all_the_international_students_you_need/
198     https://www.reddit.com/r/india/comments/186sh0r/this_new_law_can_shut_down_youtube_journalists/
199         https://www.reddit.com/r/india/comments/186s1wc/manipurs_armed_group_unlf_signs_peace_deal/
200   https://www.reddit.com/r/india/comments/186rk2u/since_everyone_is_showing_their_coins_heres_mine/
201      https://www.reddit.com/r/india/comments/186rbnb/need_help_with_unresolved_jiofiberjioairfiber/
202                             https://www.reddit.com/r/india/comments/186r6c9/animal_lovers_of_india/
203      https://www.reddit.com/r/india/comments/186qogo/flexing_this_beautiful_1_rupee_coin_from_1862/
204   https://www.reddit.com/r/india/comments/186qlwl/bengaluru_gets_amds_largest_global_design_centre/
205  https://www.reddit.com/r/india/comments/186qi17/indian_drug_manufacturers_benefit_from_big_pharma/
206                                 https://www.reddit.com/r/india/comments/186q6yq/a_coin_marked_1984/
207                   https://www.reddit.com/r/india/comments/186q2eq/the_fortnightly_ask_india_thread/
208       https://www.reddit.com/r/india/comments/186q2el/the_fortnightly_mental_health_support_thread/
209   https://www.reddit.com/r/india/comments/186pxze/india_saw_extreme_weather_events_almost_daily_in/
210   https://www.reddit.com/r/india/comments/186p8y7/my_father_died_recently_and_i_am_not_sure_how_to/
211     https://www.reddit.com/r/india/comments/186p7vs/inside_foxconns_india_iphone_factory_expansion/
212  https://www.reddit.com/r/india/comments/186p7br/india_why_are_you_sweet_and_salty_just_like_lemon/
213       https://www.reddit.com/r/india/comments/186ovnc/no_paywall_india_allots_142_billion_for_free/
214     https://www.reddit.com/r/india/comments/186ovfw/aadhaarenabled_payment_system_fraud_warning_10/
215     https://www.reddit.com/r/india/comments/186ocmh/how_much_money_is_enough_to_retire_comfortably/
216                      https://www.reddit.com/r/india/comments/186nkmy/a_question_about_universities/
217       https://www.reddit.com/r/india/comments/186n8qh/livpure_scam_alert_need_your_help_and_advice/
218        https://www.reddit.com/r/india/comments/186mcyo/looking_for_a_digital_bank_account_nri_freo/
219  https://www.reddit.com/r/india/comments/186mb84/india_has_become_cyber_fraud_capital_of_the_world/
220  https://www.reddit.com/r/india/comments/186m9kp/does_anyone_have_any_zomato_coupon_code_i_want_to/
221          https://www.reddit.com/r/india/comments/186m3fl/white_wednesday_since_black_friday_is_too/
222   https://www.reddit.com/r/india/comments/186m18z/im_traveling_from_aus_to_le_ladakh_in_march_what/
223        https://www.reddit.com/r/india/comments/186m0b1/indian_girls_pursuing_korean_culture_impact/
224  https://www.reddit.com/r/india/comments/186lwkv/what_a_man_can_do_in_india_if_he_find_out_that_he/
225    https://www.reddit.com/r/india/comments/186lvim/only_1_in_10_are_employed_the_disastrous_female/
226           https://www.reddit.com/r/india/comments/186lt8u/praggnanandhaas_mom_but_with_vaishali_oc/
227              https://www.reddit.com/r/india/comments/186linz/visiting_delhi_goa_jaipur_agra_with_a/
228   https://www.reddit.com/r/india/comments/186lgf5/the_exhaustive_process_of_finding_a_therapist_in/
229                https://www.reddit.com/r/india/comments/186l608/50_paise_coin_is_valid_legal_tender/
230     https://www.reddit.com/r/india/comments/186l3tr/when_the_machinery_broke_rathole_miners_dug_by/
231   https://www.reddit.com/r/india/comments/186l19e/sooo_everyone_is_showing_of_there_coins_lemme_be/
232   https://www.reddit.com/r/india/comments/186kxhc/window_cleaners_noida_fujifilm_x100v_1858_x_3302/
233      https://www.reddit.com/r/india/comments/186kqbb/is_something_going_on_with_chinaindia_rivalry/
234       https://www.reddit.com/r/india/comments/186jzcw/whats_stopping_indian_national_congress_from/
235    https://www.reddit.com/r/india/comments/186hivb/canadian_travelling_to_india_in_the_next_couple/
236        https://www.reddit.com/r/india/comments/186ht6o/how_does_masterchef_india_work_very_curious/
237                            https://www.reddit.com/r/india/comments/186j3l6/travelling_to_sri_lanka/
238                         https://www.reddit.com/r/india/comments/186jp67/coffee_prices_based_on_ppp/
239              https://www.reddit.com/r/india/comments/186j7fa/a_questionnaire_on_the_revadi_culture/
240                https://www.reddit.com/r/india/comments/186j3ke/hiring_of_older_candidates_in_india/
241     https://www.reddit.com/r/india/comments/186j04r/can_pm_modi_be_indias_next_astronaut_what_nasa/
242   https://www.reddit.com/r/india/comments/186iv3q/i_hate_when_some_women_take_advantage_of_being_a/
243   https://www.reddit.com/r/india/comments/186itd0/india_to_add_5_billion_aircraft_carrier_to_fleet/
244    https://www.reddit.com/r/india/comments/186i8ke/i_need_help_regarding_a_paranormal_experience_i/
245  https://www.reddit.com/r/india/comments/186hvs1/tata_ordered_to_cough_up_210m_in_code_theft_trial/
246  https://www.reddit.com/r/india/comments/186gyxs/a_gandhi_ashram_in_tn_and_its_struggling_artisans/
247   https://www.reddit.com/r/india/comments/186gr1q/fake_trp_maharashtra_govt_wants_to_withdraw_case/
248            https://www.reddit.com/r/india/comments/188f7ts/tamil_nadu_anticorruption_police_search/
249   https://www.reddit.com/r/india/comments/188elnh/raj_kapoors_iconic_bungalow_to_be_converted_into/
250     https://www.reddit.com/r/india/comments/188ehmb/sadhguru_journey_of_a_fake_spiritual_guru_full/
251        https://www.reddit.com/r/india/comments/188dx3f/seeking_insights_for_academic_research_does/
252   https://www.reddit.com/r/india/comments/188dryx/must_work_3_shifts_narayana_murthys_proposal_for/
253    https://www.reddit.com/r/india/comments/188drat/bengaluru_techie_on_paid_sex_website_falls_into/
254          https://www.reddit.com/r/india/comments/188dgs4/vanishing_graduate_tech_jobs_worsen_modis/
255    https://www.reddit.com/r/india/comments/188d6fs/mint_india_navy_appoints_first_woman_commanding/
256     https://www.reddit.com/r/india/comments/188coj1/which_city_or_state_is_the_worst_to_drive_with/
257    https://www.reddit.com/r/india/comments/188cjus/hey_rindia_its_abijit_ganguly_here_im_a_standup/
258             https://www.reddit.com/r/india/comments/188cizo/what_is_this_moye_moye_trend_all_about/
259     https://www.reddit.com/r/india/comments/188cg8z/matrimonial_sites_should_include_an_option_for/
260             https://www.reddit.com/r/india/comments/188ca7o/this_view_from_my_homestay_in_kasol_oc/
261                                      https://www.reddit.com/r/india/comments/1889yfp/diabetes_help/
262   https://www.reddit.com/r/india/comments/188b6n2/are_any_of_the_indian_chocolate_brands_ethically/
263     https://www.reddit.com/r/india/comments/18896e5/what_is_a_supplement_that_can_fulfill_all_your/
264                         https://www.reddit.com/r/india/comments/1887ww7/help_me_plan_my_india_trip/
265         https://www.reddit.com/r/india/comments/1887mlo/please_help_save_a_life_urgent_help_needed/
266    https://www.reddit.com/r/india/comments/188baw4/can_i_get_a_reserved_caste_certificate_based_on/
267  https://www.reddit.com/r/india/comments/188b627/which_infrared_thermometer_noncontact_is_the_most/
268    https://www.reddit.com/r/india/comments/188b3vu/can_a_foreigner_apply_for_indian_citizenship_if/
269  https://www.reddit.com/r/india/comments/188auxh/why_does_my_friend_keep_lying_and_having_selfpity/
270    https://www.reddit.com/r/india/comments/188abv7/what_legal_requirements_do_i_need_to_fulfill_to/
271                     https://www.reddit.com/r/india/comments/1889tl2/how_hard_is_it_to_use_blinkers/
272  https://www.reddit.com/r/india/comments/1889t11/advice_regarding_contact_lenses_from_past_current/
273      https://www.reddit.com/r/india/comments/1889j6h/is_practo_a_legitimate_source_when_looking_up/
274      https://www.reddit.com/r/india/comments/1889iu5/indian_student_kept_in_captivity_for_3_months/
275  https://www.reddit.com/r/india/comments/18893ph/bihar_teacher_abducted_forced_to_marry_kidnappers/
276                                         https://www.reddit.com/r/india/comments/1888och/pure_bliss/
277    https://www.reddit.com/r/india/comments/18885fr/no_time_left_now_why_bjp_thinks_mathura_krishna/
278         https://www.reddit.com/r/india/comments/1887g3b/prospective_job_at_maruti_need_your_advice/
279   https://www.reddit.com/r/india/comments/18877cu/are_these_things_allowed_to_fly_with_my_hellbent/
280     https://www.reddit.com/r/india/comments/1886yec/what_is_the_rationale_behind_the_insane_tax_on/
281     https://www.reddit.com/r/india/comments/1886x12/no_one_insults_me_more_than_my_parents_do_am_i/
282         https://www.reddit.com/r/india/comments/1886woi/hdfc_life_details_from_scammer_on_whatsapp/
283       https://www.reddit.com/r/india/comments/1886wjx/the_mobile_market_in_india_has_gone_terrible/
284   https://www.reddit.com/r/india/comments/1886d8g/how_alleged_india_plots_to_kill_sikh_separatists/
285                                        https://www.reddit.com/r/india/comments/18866we/art_by_alok/
286                            https://www.reddit.com/r/india/comments/18860ui/got_diagnosed_with_bppv/
287         https://www.reddit.com/r/india/comments/1885u19/no_electricity_at_stadium_hosting_india_vs/
288  https://www.reddit.com/r/india/comments/1885tje/hello_any_indians_here_using_duprost_by_cipla_for/
289      https://www.reddit.com/r/india/comments/1885mtk/is_manipal_university_jaipur_online_bca_legit/
290          https://www.reddit.com/r/india/comments/18853fn/for_south_indian_ladies_where_to_find_pen/
291                       https://www.reddit.com/r/india/comments/18850ju/confused_which_laptop_to_buy/
292          https://www.reddit.com/r/india/comments/1883y00/things_named_after_modi_in_last_few_years/
293       https://www.reddit.com/r/india/comments/1884aub/is_anyone_here_worried_about_having_children/
294                       https://www.reddit.com/r/india/comments/1884nje/remembering_a_beloved_friend/
295    https://www.reddit.com/r/india/comments/1884sbz/decline_in_muslim_enrolment_in_higher_education/
296      https://www.reddit.com/r/india/comments/1884mf6/my_experience_travelling_with_indian_railways/
297   https://www.reddit.com/r/india/comments/18847zp/223_lakh_crore_to_buy_97_tejas_jets_156_prachand/
298  https://www.reddit.com/r/india/comments/18845aw/henry_kissingers_controversial_link_to_bhopal_gas/
299      https://www.reddit.com/r/india/comments/187nayy/i_am_planning_my_career_currently_in_11th_and/
300        https://www.reddit.com/r/india/comments/187n36k/anyone_from_nagalandneed_help_with_a_school/
301    https://www.reddit.com/r/india/comments/187n1f8/eli5_if_indias_economy_is_booming_then_why_isnt/
302    https://www.reddit.com/r/india/comments/187vkcb/the_blatant_misogyny_on_instagram_is_disgusting/
303            https://www.reddit.com/r/india/comments/187zz6o/question_regarding_status_of_cybercrime/
304           https://www.reddit.com/r/india/comments/1880x7d/impact_of_large_language_models_on_india/
305        https://www.reddit.com/r/india/comments/187pl05/i_lost_my_pan_card_and_drivers_license_card/
306        https://www.reddit.com/r/india/comments/1882s8f/hi_any_reliale_dog_ngos_in_jaipur_rajasthan/
307    https://www.reddit.com/r/india/comments/1883kh3/breakdown_of_the_structure_of_indian_economy_as/
308    https://www.reddit.com/r/india/comments/18836u3/50metretall_mobile_tower_stolen_from_up_village/
309     https://www.reddit.com/r/india/comments/1882ri1/115millionyear_old_shark_fossils_discovered_in/
310   https://www.reddit.com/r/india/comments/1882lhc/rs_223_lakh_croredeal_india_approves_purchase_of/
311       https://www.reddit.com/r/india/comments/1881wtk/rs_1885_crore_looted_from_pnb_ukhrul_manipur/
312      https://www.reddit.com/r/india/comments/1881qr2/teaching_practical_masculinity_to_my_daughter/
313               https://www.reddit.com/r/india/comments/1881ewi/percentage_of_women_in_the_workforce/
314     https://www.reddit.com/r/india/comments/18803ru/how_successful_has_the_ban_of_alcohol_in_bihar/
315    https://www.reddit.com/r/india/comments/187xiet/nijjarpannun_effect_raw_downs_shutters_in_north/
316      https://www.reddit.com/r/india/comments/187wydu/telangana_exit_poll_results_2023_live_updates/
317     https://www.reddit.com/r/india/comments/187ttjc/starting_a_help_chain_like_the_bollywood_movie/
318                           https://www.reddit.com/r/india/comments/187s3k3/i_want_to_cry_but_i_cant/
319    https://www.reddit.com/r/india/comments/187r8vj/custom_vinyl_record_pressing_in_india_christmas/
320    https://www.reddit.com/r/india/comments/187qw78/regarding_filing_a_complaint_with_the_vigilance/
321       https://www.reddit.com/r/india/comments/187peji/indias_cricket_body_takes_byjus_to_court_for/
322         https://www.reddit.com/r/india/comments/187p7b9/woman_screaming_for_help_in_the_streets_of/
323   https://www.reddit.com/r/india/comments/187lcek/today_i_saw_the_plague_destroying_our_country_in/
324  https://www.reddit.com/r/india/comments/187o0pi/customs_duty_inquiry_bringing_used_cycle_to_india/
325         https://www.reddit.com/r/india/comments/187otrh/understanding_us_indictment_in_pannun_plot/
326  https://www.reddit.com/r/india/comments/187lti6/ama_alert_standup_comedian_abijit_ganguly_will_be/
327     https://www.reddit.com/r/india/comments/187knm2/buddha_used_to_be_vishnu_in_india_in_sri_lanka/
328   https://www.reddit.com/r/india/comments/187jn7l/nasa_to_train_indian_astronaut_for_iss_voyage_in/
329     https://www.reddit.com/r/india/comments/187jett/since_others_are_also_sharing_their_collection/
330       https://www.reddit.com/r/india/comments/187j8ys/after_union_govt_renames_health_and_wellness/
331      https://www.reddit.com/r/india/comments/187j0p0/cyclone_michaung_headed_for_tamil_nadu_andhra/
332     https://www.reddit.com/r/india/comments/187iqa4/navi_mumbai_opens_first_metro_line_eight_years/
333    https://www.reddit.com/r/india/comments/187iq77/her_adopters_bailed_on_her_and_since_then_roohi/
334  https://www.reddit.com/r/india/comments/187i2ur/india_gdp_growth_in_q2_fy24_beats_estimates_at_76/
335        https://www.reddit.com/r/india/comments/187i226/how_accurate_were_2018_exit_polls_in_madhya/
336       https://www.reddit.com/r/india/comments/187houw/old_nokia_phone_is_now_manufactured_in_india/
337     https://www.reddit.com/r/india/comments/187h4p6/is_wearing_saree_below_navel_too_bold_in_india/
338          https://www.reddit.com/r/india/comments/187aztf/3_months_in_india_need_tips_for_making_my/
339          https://www.reddit.com/r/india/comments/187fkql/germany_family_reunion_visa_expected_time/
340        https://www.reddit.com/r/india/comments/187exyc/are_there_places_to_visit_before_renouncing/
341       https://www.reddit.com/r/india/comments/187eoe4/why_is_there_so_much_hate_around_the_country/
342                             https://www.reddit.com/r/india/comments/187eayl/potential_animal_abuse/
343                       https://www.reddit.com/r/india/comments/187e58c/never_buy_from_headphonezone/
344               https://www.reddit.com/r/india/comments/187duk2/getting_a_passport_is_still_a_hassle/
345    https://www.reddit.com/r/india/comments/187db9n/looking_for_recommendations_for_a_city_that_has/
346           https://www.reddit.com/r/india/comments/187cygf/nervous_flyer_air_india_long_haul_flight/
347         https://www.reddit.com/r/india/comments/187fa5v/setting_up_a_cloud_kitchen_based_from_home/
348            https://www.reddit.com/r/india/comments/189aij3/which_is_the_best_payments_bank_account/
349   https://www.reddit.com/r/india/comments/189jrd2/new_scam_noida_woman_digitally_arrested_duped_of/
350         https://www.reddit.com/r/india/comments/1899xb3/doctors_of_rindia_need_some_help_why_was_i/
351  https://www.reddit.com/r/india/comments/189gtqf/is_there_a_guide_to_set_up_essentials_upon_return/
352                       https://www.reddit.com/r/india/comments/189g7kl/job_market_in_india_worth_it/
353                https://www.reddit.com/r/india/comments/189cqlh/review_on_manochikitsa_and_manastha/
354                             https://www.reddit.com/r/india/comments/189c4k9/december_trip_to_india/
355   https://www.reddit.com/r/india/comments/189b5r6/court_dismisses_hindu_makkal_katchi_leaders_plea/
356       https://www.reddit.com/r/india/comments/189awh3/what_does_the_sisodia_bail_decision_mean_for/
357         https://www.reddit.com/r/india/comments/18995xh/first_ever_sister_and_brother_grandmasters/
358      https://www.reddit.com/r/india/comments/1898ujd/akshay_kumar_already_made_a_movie_on_rescuing/
359        https://www.reddit.com/r/india/comments/1898li8/byjus_delays_november_salary_of_around_1000/
360      https://www.reddit.com/r/india/comments/188kj6o/can_anyone_explain_how_the_upi_fraud_was_done/
361                            https://www.reddit.com/r/india/comments/189696a/is_ms_from_usa_worth_it/
362  https://www.reddit.com/r/india/comments/1896kvl/askindia_online_business_owners_of_reddit_i_got_a/
363                  https://www.reddit.com/r/india/comments/188we2r/legit_organisations_for_donations/
364     https://www.reddit.com/r/india/comments/188y5u1/mentioning_that_you_are_a_brahmin_when_someone/
365       https://www.reddit.com/r/india/comments/188yn8e/what_is_this_mca_government_thing_and_how_do/
366   https://www.reddit.com/r/india/comments/188xidi/a_potential_buyer_did_some_developmental_work_on/
367                https://www.reddit.com/r/india/comments/18973q3/indigo_airlines_lost_my_mothers_bag/
368    https://www.reddit.com/r/india/comments/1895yjt/what_do_i_29m_do_something_about_my_brother_26m/
369           https://www.reddit.com/r/india/comments/1891amz/lawyeractivist_as_a_secondary_profession/
370              https://www.reddit.com/r/india/comments/1891l0b/has_anyone_used_desertcartin_recently/
371  https://www.reddit.com/r/india/comments/188ye6l/unemployed_for_a_few_months_currently_need_advice/
372               https://www.reddit.com/r/india/comments/188xyn4/anuv_jain_concert_dec_23rd_bangalore/
373      https://www.reddit.com/r/india/comments/188xsll/psychologist_recommendations_for_pathological/
374    https://www.reddit.com/r/india/comments/1894fs1/man_kills_girlfriend_in_hotel_posts_pic_of_body/
375    https://www.reddit.com/r/india/comments/188zql6/what_apps_do_you_have_on_your_phone_for_quality/
376  https://www.reddit.com/r/india/comments/1890ydq/in_the_absence_of_a_uniform_civil_code_which_laws/
377    https://www.reddit.com/r/india/comments/1890vhm/how_viable_is_the_pc_assembly_business_in_india/
378     https://www.reddit.com/r/india/comments/1890knk/hello_rindia_dumb_tourist_question_can_one_get/
379        https://www.reddit.com/r/india/comments/18904ab/is_there_any_way_to_request_for_movies_at_a/
380                          https://www.reddit.com/r/india/comments/189034y/should_i_do_an_mba_or_not/
381                                https://www.reddit.com/r/india/comments/18902d0/budget_tracking_app/
382  https://www.reddit.com/r/india/comments/18948cv/indias_aditya_mission_starts_studying_solar_winds/
383    https://www.reddit.com/r/india/comments/1893yzr/1984_bhopal_gas_tragedy_one_of_the_worlds_major/
384      https://www.reddit.com/r/india/comments/189345y/boult_audio_called_me_to_rate_their_product_5/
385          https://www.reddit.com/r/india/comments/1892r4i/2014_narendra_modi_has_suggested_he_would/
386    https://www.reddit.com/r/india/comments/1892l9x/in_2022_india_accounted_for_66_of_malaria_cases/
387    https://www.reddit.com/r/india/comments/1892bwo/alright_now_its_my_turn_to_show_off_my_sizeable/
388   https://www.reddit.com/r/india/comments/1892alj/plot_to_kill_pannun_why_did_nikhil_gupta_want_to/
389     https://www.reddit.com/r/india/comments/1892633/what_is_with_this_studyabroad_is_bad_mentality/
390       https://www.reddit.com/r/india/comments/18925wf/us_prosecutors_say_plots_to_assassinate_sikh/
391  https://www.reddit.com/r/india/comments/18922ab/tamil_nadu_police_wrap_up_overnight_search_at_eds/
392       https://www.reddit.com/r/india/comments/1890fi4/notice_to_11_bjp_mlas_for_insulting_national/
393  https://www.reddit.com/r/india/comments/1890au9/ktaka_visually_impaired_elderly_muslim_man_forced/
394  https://www.reddit.com/r/india/comments/188zyh1/while_we_watched_john_oliver_in_conversation_with/
395    https://www.reddit.com/r/india/comments/188zwc6/3_in_gujarat_die_after_consuming_ayurveda_syrup/
396                 https://www.reddit.com/r/india/comments/188yh9c/best_stomach_friendly_whey_protein/
397      https://www.reddit.com/r/india/comments/188yv4b/indias_lawless_financial_capitalism_fosters_a/
398    https://www.reddit.com/r/india/comments/188ytf5/2000_banknotes_continue_to_be_legal_tender_even/
399   https://www.reddit.com/r/india/comments/188yqng/prokabaddi_is_bigger_than_ipl_in_small_towns_and/
400     https://www.reddit.com/r/india/comments/188xs1q/which_is_the_best_online_pctech_repair_website/
401  https://www.reddit.com/r/india/comments/188xpqr/silkyara_tunnel_collaped_20_times_in_past_5_years/
402                https://www.reddit.com/r/india/comments/188x2n1/why_there_is_no_britishers_in_india/
403      https://www.reddit.com/r/india/comments/188x824/just_read_that_no_democratic_country_has_ever/
404  https://www.reddit.com/r/india/comments/188x8jd/where_do_i_report_about_a_passenger_who_harrassed/
405                      https://www.reddit.com/r/india/comments/188wwev/pawan_hans_helicopter_booking/
406  https://www.reddit.com/r/india/comments/188wve8/new_zealand_3_khalistan_extremists_guilty_of_plot/
407      https://www.reddit.com/r/india/comments/188wk9x/netflix_viacom18_among_streaming_firms_set_to/
408    https://www.reddit.com/r/india/comments/188wa2f/not_a_vishwaguru_not_indispensable_nijjarpannun/
409  https://www.reddit.com/r/india/comments/188w7xh/kissinger_nixon_helped_pakistan_in_1971_documents/
410                      https://www.reddit.com/r/india/comments/188vz5f/lowest_highest_literacy_rates/
411    https://www.reddit.com/r/india/comments/188vm7q/pakistan_beats_india_3818_at_unesco_vote_global/
412     https://www.reddit.com/r/india/comments/188vewe/university_grants_commission_asks_universities/
413   https://www.reddit.com/r/india/comments/188v3zi/mp_shocker_jcb_machine_cement_mixer_used_to_make/
414    https://www.reddit.com/r/india/comments/188v3l4/tamil_nadu_police_arrest_ed_official_in_bribery/
415       https://www.reddit.com/r/india/comments/188v39f/commercial_lpg_cylinder_prices_hiked_21_from/
416      https://www.reddit.com/r/india/comments/188v06m/inspired_from_raskreddit_which_millionaire_or/
417     https://www.reddit.com/r/india/comments/188uyw3/in_a_first_woman_officer_assumes_command_of_an/
418    https://www.reddit.com/r/india/comments/188uyra/received_unexpected_money_in_my_account_have_no/
419     https://www.reddit.com/r/india/comments/188uolf/ed_officer_arrested_tamil_nadu_police_searches/
420      https://www.reddit.com/r/india/comments/188umm6/the_indian_siblings_taking_the_chess_world_by/
421     https://www.reddit.com/r/india/comments/188u05u/in_exam_6_in_gujarat_write_adult_content_abuse/
422     https://www.reddit.com/r/india/comments/188thcg/it_felt_like_death_was_near_survivors_of_india/
423     https://www.reddit.com/r/india/comments/188tbcd/biden_wants_to_take_away_modis_license_to_kill/
424        https://www.reddit.com/r/india/comments/188m8bj/indira_gandhi_interview_in_french_14jan1969/
425    https://www.reddit.com/r/india/comments/188lmf1/giorgia_meloni_reacts_to_the_melodi_trend_which/
426                         https://www.reddit.com/r/india/comments/188l7sp/animal_movie_is_disturbing/
427        https://www.reddit.com/r/india/comments/188l3nw/48_bengaluru_schools_get_bomb_threat_emails/
428    https://www.reddit.com/r/india/comments/188kwft/does_anyone_have_a_parent_whos_lonely_scared_of/
429  https://www.reddit.com/r/india/comments/188khk4/govt_putting_in_lot_of_effort_to_protect_domestic/
430              https://www.reddit.com/r/india/comments/188k8h2/whats_this_ridiculous_airline_pricing/
431  https://www.reddit.com/r/india/comments/188j3ig/do_you_guys_have_any_small_business_ideas_for_old/
432  https://www.reddit.com/r/india/comments/188iyj0/sc_extends_protection_granted_to_journalists_from/
433    https://www.reddit.com/r/india/comments/188it8c/suggestions_for_seven_day_itinerary_to_himachal/
434     https://www.reddit.com/r/india/comments/188iq9c/need_advice_on_international_transaction_issue/
435                       https://www.reddit.com/r/india/comments/188ieao/price_of_indian_tourist_visa/
436     https://www.reddit.com/r/india/comments/188homw/tamil_nadu_cops_to_search_central_probe_agency/
437      https://www.reddit.com/r/india/comments/188hoci/how_hospital_with_fake_doctors_thrived_in_the/
438                                        https://www.reddit.com/r/india/comments/188hoa6/usa_v_gupta/
439             https://www.reddit.com/r/india/comments/188gubp/multiplex_offline_movie_ticket_booking/
440          https://www.reddit.com/r/india/comments/188gk40/best_pocket_friendly_vegan_protein_powder/
441             https://www.reddit.com/r/india/comments/188garb/fd_auto_renewal_interest_rate_sbi_bank/
442   https://www.reddit.com/r/india/comments/188g18v/is_there_any_psychologists_here_need_urgent_help/
443    https://www.reddit.com/r/india/comments/188fy5d/why_are_so_many_indians_leaving_india_giving_up/
444    https://www.reddit.com/r/india/comments/188fqaf/paraguay_official_sacked_after_signing_mou_with/
445                           https://www.reddit.com/r/india/comments/188fi3e/need_help_livspace_fraud/
446                          https://www.reddit.com/r/india/comments/188fez2/oci_card_application_mail/
447                    https://www.reddit.com/r/india/comments/188fao0/brands_like_bath_and_body_works/
448   https://www.reddit.com/r/india/comments/18ap7ik/indias_identity_is_more_hardline_hindu_than_ever/
449      https://www.reddit.com/r/india/comments/18ap5wu/applying_for_parents_us_b2_visa_for_the_first/
450         https://www.reddit.com/r/india/comments/18ao0z3/how_do_you_clear_vapoursfog_from_your_cars/
451        https://www.reddit.com/r/india/comments/18anmku/swanand_kirkire_voices_concern_over_animals/
452            https://www.reddit.com/r/india/comments/18and9q/help_fill_a_questionnaire_for_a_project/
453                     https://www.reddit.com/r/india/comments/18an7i4/penguin_india_twitter_giveaway/
454        https://www.reddit.com/r/india/comments/18an1v0/alleged_plot_by_indian_intelligence_to_kill/
455  https://www.reddit.com/r/india/comments/18alyor/under_siege_huge_network_of_chinese_fake_accounts/
456     https://www.reddit.com/r/india/comments/18alnau/my_experience_with_dealing_with_nestle_support/
457     https://www.reddit.com/r/india/comments/18al6pc/how_much_money_does_it_cost_you_monthly_to_run/
458         https://www.reddit.com/r/india/comments/18al6ql/dr_kafeel_khan_booked_over_writing_against/
459          https://www.reddit.com/r/india/comments/18al4g5/canada_calling_a_punjabi_students_suicide/
460     https://www.reddit.com/r/india/comments/18al406/byjus_founder_byju_raveendran_pledges_homes_to/
461      https://www.reddit.com/r/india/comments/18akkof/japans_tdk_corp_to_manufacture_iphone_battery/
462      https://www.reddit.com/r/india/comments/18akj5g/im_coping_with_hearing_loss_and_its_giving_me/
463      https://www.reddit.com/r/india/comments/18akend/can_anyone_suggest_sources_to_learn_piano_for/
464       https://www.reddit.com/r/india/comments/18ajz4c/looking_for_volunteers_in_an_ngo_run_english/
465                            https://www.reddit.com/r/india/comments/18ajnrb/my_old_coins_collection/
466       https://www.reddit.com/r/india/comments/18aise5/gujarat_ministers_lock_horns_over_figures_of/
467   https://www.reddit.com/r/india/comments/18aiqwt/india_nears_4_trillion_market_capitalization_set/
468       https://www.reddit.com/r/india/comments/18aiqhq/fedup_with_education_system_and_unemployment/
469      https://www.reddit.com/r/india/comments/18ai4z8/results_of_2023_assembly_elections_in_mizoram/
470    https://www.reddit.com/r/india/comments/18ai32r/rajas_of_rat_mining_heroes_of_himalayas_have_no/
471      https://www.reddit.com/r/india/comments/18ah85i/heavy_rains_to_lash_chennai_and_neighbourhood/
472     https://www.reddit.com/r/india/comments/18agkvu/man_along_with_four_friends_rapes_sister_kills/
473   https://www.reddit.com/r/india/comments/18ag9e7/what_do_the_state_election_results_tell_us_about/
474      https://www.reddit.com/r/india/comments/18ag7qm/what_was_the_creation_of_todays_indian_states/
475                             https://www.reddit.com/r/india/comments/18aa1zu/use_ola_with_us_number/
476      https://www.reddit.com/r/india/comments/18a9gym/need_help_with_birthday_gift_online_gift_site/
477      https://www.reddit.com/r/india/comments/18a9971/35_year_gap_in_resume_can_anyone_please_offer/
478      https://www.reddit.com/r/india/comments/18a92u4/what_positive_changes_have_north_indians_seen/
479                           https://www.reddit.com/r/india/comments/18a6z9z/gifts_for_indian_parents/
480      https://www.reddit.com/r/india/comments/18afzm8/aap_loses_all_seats_in_polls_gets_fewer_votes/
481     https://www.reddit.com/r/india/comments/18aflnj/help_me_make_sense_of_this_matrimony_conundrum/
482    https://www.reddit.com/r/india/comments/18af5h1/which_academic_degree_will_be_beneficial_for_me/
483         https://www.reddit.com/r/india/comments/18adlxc/looking_for_people_to_go_skiing_in_gulmarg/
484  https://www.reddit.com/r/india/comments/18ad7ii/is_real_estate_investment_in_india_worst_in_terms/
485           https://www.reddit.com/r/india/comments/18aciz1/why_doesnt_india_care_about_its_citizens/
486                                 https://www.reddit.com/r/india/comments/18afpa1/movies_and_society/
487    https://www.reddit.com/r/india/comments/18aerri/i_am_a_new_supporter_of_bjp_as_i_want_things_to/
488   https://www.reddit.com/r/india/comments/18ac6k3/21yearold_phd_student_in_bengalurus_iisc_dies_by/
489  https://www.reddit.com/r/india/comments/18ac4r9/lured_into_parttime_job_bengaluru_techie_loses_rs/
490         https://www.reddit.com/r/india/comments/18ac0x2/bihar_receives_global_acclaim_at_cop28_for/
491         https://www.reddit.com/r/india/comments/18abp32/global_box_office_ranbir_kapoors_animal_is/
492      https://www.reddit.com/r/india/comments/18ab8f3/war_hots_up_as_ed_asks_tamil_nadu_dgp_to_book/
493      https://www.reddit.com/r/india/comments/18a7box/bjp_sweeps_hindi_heartland_congress_surges_in/
494  https://www.reddit.com/r/india/comments/18a5xmj/us_assassination_attempt_charges_confirm_trudeaus/
495                      https://www.reddit.com/r/india/comments/18a39z3/india_type_m_to_shucko_type_f/
496   https://www.reddit.com/r/india/comments/18a1k1s/as_a_mongolian_born_in_china_i_would_like_to_ask/
497       https://www.reddit.com/r/india/comments/189ydfh/are_there_any_cheaper_alternatives_online_to/
498  https://www.reddit.com/r/india/comments/189yd2w/flexible_online_jobs_that_dont_require_a_degree_i/
499         https://www.reddit.com/r/india/comments/189wxnp/has_aadhaar_seeding_to_a_bank_been_stopped/
500      https://www.reddit.com/r/india/comments/189wn7j/eureka_forbes_water_purifiers_for_villages_in/
501      https://www.reddit.com/r/india/comments/189vzzz/moms_share_of_the_property_and_the_to_say_the/
502      https://www.reddit.com/r/india/comments/189vq80/divorce_in_indian_context_cause_of_separation/
503    https://www.reddit.com/r/india/comments/189vlhp/after_karnataka_strategist_sunil_kanugolu_pulls/
504                    https://www.reddit.com/r/india/comments/189uctt/growing_feeling_of_hopelessness/
505             https://www.reddit.com/r/india/comments/189u2hx/land_value_capture_a_selffinancing_and/
506    https://www.reddit.com/r/india/comments/189txu3/how_difficult_is_it_to_obtain_a_restricted_area/
507      https://www.reddit.com/r/india/comments/189r4tq/hi_redditors_of_india_what_credit_card_do_you/
508        https://www.reddit.com/r/india/comments/189rpq5/court_notice_my_vehicle_no_challaned_online/
509                           https://www.reddit.com/r/india/comments/189rwin/carrying_electronics_kit/
510                                    https://www.reddit.com/r/india/comments/189rwrd/find_an_old_fir/
511    https://www.reddit.com/r/india/comments/189s0xh/bags_are_so_handy_why_are_they_such_a_taboo_for/
512                             https://www.reddit.com/r/india/comments/189s25c/credit_card_as_student/
513      https://www.reddit.com/r/india/comments/189so7x/south_indian_wanting_to_learn_hindi_whats_the/
514  https://www.reddit.com/r/india/comments/189sv7g/jnu_prof_nivedita_menon_no_point_in_going_back_to/
515       https://www.reddit.com/r/india/comments/189sks6/assembly_triumphs_no_guarantee_for_lok_sabha/
516   https://www.reddit.com/r/india/comments/189se1t/how_much_tax_do_youtubers_pay_who_earn_more_than/
517   https://www.reddit.com/r/india/comments/189s0j4/how_can_an_indian_say_that_vegan_diet_is_lacking/
518         https://www.reddit.com/r/india/comments/189rwdl/how_are_news_channels_ahead_of_eci_website/
519   https://www.reddit.com/r/india/comments/189rp42/ahead_of_india_meeting_aap_rubs_it_in_lays_claim/
520   https://www.reddit.com/r/india/comments/189rhrn/modi_road_show_celebration_with_10000_supporters/
521     https://www.reddit.com/r/india/comments/189qp5m/a_fellow_pakistani_kashmiri_needs_some_help_on/
522   https://www.reddit.com/r/india/comments/189pr83/how_to_invest_separately_without_mixing_mfstocks/
523  https://www.reddit.com/r/india/comments/189owrv/whats_your_review_of_nsdl_jiffy_advantage_account/
524                       https://www.reddit.com/r/india/comments/189oxhi/guys_beware_of_this_ola_scam/
525      https://www.reddit.com/r/india/comments/189p2jr/anyone_having_health_insurance_from_hdfc_ergo/
526   https://www.reddit.com/r/india/comments/189p8h9/my_samsung_smart_tv_is_repeatedly_malfunctioning/
527                          https://www.reddit.com/r/india/comments/189pjib/child_abuse_by_stepmother/
528      https://www.reddit.com/r/india/comments/189ow1u/what_explains_bjps_massive_mp_lead_lastminute/
529   https://www.reddit.com/r/india/comments/189ohhw/does_anybody_knows_any_neurologists_who_can_cure/
530   https://www.reddit.com/r/india/comments/189odvg/prokabaddi_is_bigger_than_ipl_in_small_towns_and/
531         https://www.reddit.com/r/india/comments/189o0ki/success_rate_of_being_a_therapist_in_india/
532                       https://www.reddit.com/r/india/comments/189o0de/ass_mobile_tech_bangalore_oc/
533         https://www.reddit.com/r/india/comments/189nza4/is_data_analyst_job_is_needed_in_arab_gulf/
534       https://www.reddit.com/r/india/comments/189nj3g/cop28_india_not_party_to_green_pledge_by_118/
535     https://www.reddit.com/r/india/comments/189nh86/mysterious_transaction_of_2_lakh_rupees_in_sbi/
536  https://www.reddit.com/r/india/comments/189nawp/how_good_are_companies_like_homelane_and_livspace/
537     https://www.reddit.com/r/india/comments/189n80s/can_a_policeman_fine_me_if_he_does_not_produce/
538                      https://www.reddit.com/r/india/comments/189n5cz/need_help_finding_a_folk_song/
539         https://www.reddit.com/r/india/comments/189m1o2/found_these_old_coins_from_my_grandmothers/
540        https://www.reddit.com/r/india/comments/189m1mq/infosys_techie_loses_rs_37_crore_to_scammer/
541                   https://www.reddit.com/r/india/comments/189loli/customs_duty_on_imported_rc_cars/
542   https://www.reddit.com/r/india/comments/189krt0/have_we_as_a_culture_collectively_forgotten_true/
543          https://www.reddit.com/r/india/comments/189kgvh/2023_assembly_election_results_megathread/
544   https://www.reddit.com/r/india/comments/189k4vo/why_a_murder_plot_will_not_turn_the_us_away_from/
545    https://www.reddit.com/r/india/comments/189j08j/can_someone_tell_me_where_is_this_taj_located_i/
546    https://www.reddit.com/r/india/comments/189blc8/is_starting_a_business_as_a_common_man_going_to/
547    https://www.reddit.com/r/india/comments/189jwov/16181crore_cyber_fraud_case_thane_police_arrest/
548                https://www.reddit.com/r/india/comments/18c31ed/zee_music_songs_are_back_on_spotify/
549     https://www.reddit.com/r/india/comments/18c34fl/in_gujarat_after_fake_government_offices_now_a/
550                        https://www.reddit.com/r/india/comments/18bigou/traveling_with_dog_in_train/
551                    https://www.reddit.com/r/india/comments/18bgnre/language_learning_and_traveling/
552   https://www.reddit.com/r/india/comments/18c227v/stubble_burning_after_imposing_rs_24_crore_fines/
553     https://www.reddit.com/r/india/comments/18c108n/qr_code_scams_how_to_identify_and_be_safe_from/
554         https://www.reddit.com/r/india/comments/18c0sdc/will_attack_parliament_on_or_before_dec_13/
555      https://www.reddit.com/r/india/comments/18c0s7m/judges_want_reforms_in_cricket_hockey_but_not/
556 https://www.reddit.com/r/india/comments/18c0exf/delhi_among_most_unsafe_cities_for_women_ncrb_data/
557    https://www.reddit.com/r/india/comments/18c0dgc/kolkata_declared_safest_city_in_india_for_third/
558             https://www.reddit.com/r/india/comments/18c0a9v/cancer_chose_me_but_i_chose_how_to_die/
559      https://www.reddit.com/r/india/comments/18bzoks/ama_alert_join_us_for_a_live_ama_session_with/
560       https://www.reddit.com/r/india/comments/18bzgwx/can_a_rat_do_this_this_is_on_16th_floor_main/
561              https://www.reddit.com/r/india/comments/18bzbw5/whose_ayodhya_citys_cultural_heritage/
562       https://www.reddit.com/r/india/comments/18bykdo/unearthing_the_mystery_of_sinauli_secrets_of/
563       https://www.reddit.com/r/india/comments/18by3zr/dog_bite_cases_double_in_3_years_30_cases_of/
564      https://www.reddit.com/r/india/comments/18bxtx9/no_food_electricity_and_internet_connectivity/
565       https://www.reddit.com/r/india/comments/18bwids/why_are_some_freebies_revdi_while_others_are/
566     https://www.reddit.com/r/india/comments/18bxf9e/assassination_plot_against_pannun_will_wait_to/
567  https://www.reddit.com/r/india/comments/18bwz7a/all_these_name_a_star_websites_are_a_scam_and_you/
568      https://www.reddit.com/r/india/comments/18bx0xg/indian_navy_ranks_to_be_renamed_as_per_indian/
569          https://www.reddit.com/r/india/comments/18btuoa/a_better_process_to_enter_indian_airports/
570    https://www.reddit.com/r/india/comments/18buna0/isro_brings_back_chandrayaan3_propulsion_module/
571 https://www.reddit.com/r/india/comments/18bu0ro/man_refuses_to_leave_mom_during_fire_dies_with_her/
572                      https://www.reddit.com/r/india/comments/18bj160/tricks_to_get_cheaper_flights/
573   https://www.reddit.com/r/india/comments/18bsq7o/banks_write_off_rs_105_lakh_crore_in_5_years_npa/
574        https://www.reddit.com/r/india/comments/18bslli/over_35000_students_died_by_suicide_between/
575  https://www.reddit.com/r/india/comments/18au5l5/i_feel_done_with_the_way_our_country_is_being_run/
576                                   https://www.reddit.com/r/india/comments/18arso8/kedarkantha_trek/
577         https://www.reddit.com/r/india/comments/18b45ec/please_help_me_find_this_old_bengali_movie/
578                         https://www.reddit.com/r/india/comments/18b5fx4/good_art_colleges_in_india/
579          https://www.reddit.com/r/india/comments/18b5k07/50_lakhs_for_a_veterans_life_stop_playing/
580   https://www.reddit.com/r/india/comments/18b5mob/is_it_easy_to_get_bland_food_in_restaurants_food/
581    https://www.reddit.com/r/india/comments/18b6886/irctc_how_do_i_get_a_refund_on_a_counter_bought/
582               https://www.reddit.com/r/india/comments/18b6v1u/never_book_tickets_through_cleartrip/
583  https://www.reddit.com/r/india/comments/18b79wv/my_experience_with_ordering_from_sennheiser_india/
584      https://www.reddit.com/r/india/comments/18b7dg2/have_anyone_heard_of_forced_corruption_system/
585                       https://www.reddit.com/r/india/comments/18b7k9p/why_are_roads_in_tn_horrible/
586  https://www.reddit.com/r/india/comments/18besuh/india_is_filthy_and_should_not_be_romanticised_by/
587                         https://www.reddit.com/r/india/comments/18baq7k/north_india_itinerary_help/
588            https://www.reddit.com/r/india/comments/18bcp0g/is_it_scam_or_i_should_take_some_action/
589      https://www.reddit.com/r/india/comments/18bbdpv/odd_one_out_as_i_dont_like_core_computational/
590   https://www.reddit.com/r/india/comments/18baw1l/first_generation_lawyer_here_how_to_get_a_decent/
591                    https://www.reddit.com/r/india/comments/18bapp0/ideal_business_bank_account_for/
592             https://www.reddit.com/r/india/comments/18bi23a/will_poor_things_get_a_show_in_kolkata/
593       https://www.reddit.com/r/india/comments/18bhi26/cyclone_michaung_tracker_live_cyclonic_storm/
594    https://www.reddit.com/r/india/comments/18bhg3g/us_deputy_nsa_raises_pannun_plot_case_calls_for/
595  https://www.reddit.com/r/india/comments/18bhf9g/warmest_decade_in_history_also_saw_drop_in_deaths/
596                     https://www.reddit.com/r/india/comments/18b7yis/traveling_from_poland_to_india/
597            https://www.reddit.com/r/india/comments/18b83qq/pathetic_conditions_in_my_locality_need/
598               https://www.reddit.com/r/india/comments/18b8uu5/how_can_i_start_with_online_tutoring/
599           https://www.reddit.com/r/india/comments/18bh65y/three_brothers_booked_in_up_for_forcibly/
600  https://www.reddit.com/r/india/comments/18bd5el/how_can_i_obtain_the_cctv_footage_from_the_redbus/
601   https://www.reddit.com/r/india/comments/18bf7sw/seeking_guidance_on_affordable_universities_with/
602      https://www.reddit.com/r/india/comments/18bfsjp/what_is_your_opinion_about_these_cheap_memory/
603        https://www.reddit.com/r/india/comments/18bf7ge/men_of_india_who_do_microneedling_to_combat/
604              https://www.reddit.com/r/india/comments/18bgk1o/sensex_returns_by_each_prime_minister/
605     https://www.reddit.com/r/india/comments/18bei05/update_bunny_the_kitten_who_got_hurt_by_a_bike/
606     https://www.reddit.com/r/india/comments/18be8uc/update_chhotu_got_adopted_all_thanks_to_reddit/
607            https://www.reddit.com/r/india/comments/18be0pi/karnataka_hc_suspends_live_streaming_of/
608  https://www.reddit.com/r/india/comments/18bdn52/sunset_on_flag_hill_above_mcleod_ganj_hp_fujifilm/
609      https://www.reddit.com/r/india/comments/18bd4rf/over_35000_students_committed_suicide_between/
610     https://www.reddit.com/r/india/comments/18bca1v/india_bloc_meeting_postponed_after_key_leaders/
611  https://www.reddit.com/r/india/comments/18bbv0c/while_we_watched_john_oliver_in_conversation_with/
612   https://www.reddit.com/r/india/comments/18bb8tf/some_things_are_best_left_unsaid_justice_sk_kaul/
613   https://www.reddit.com/r/india/comments/18bb3oc/revealed_global_private_hospital_group_embroiled/
614   https://www.reddit.com/r/india/comments/18bb2eh/modi_plus_hindutva_proves_too_tough_for_congress/
615       https://www.reddit.com/r/india/comments/18bawac/supreme_court_asks_if_unmarried_women_having/
616         https://www.reddit.com/r/india/comments/18bagab/fir_lodged_against_dr_kafeel_for_maligning/
617     https://www.reddit.com/r/india/comments/18b9nid/rashtriya_rajput_karni_sena_national_president/
618   https://www.reddit.com/r/india/comments/18b9kem/dmk_mp_senthil_kumar_stokes_controversy_says_bjp/
619  https://www.reddit.com/r/india/comments/18b9iii/serioushelp_nearby_building_redevelopment_causing/
620   https://www.reddit.com/r/india/comments/18b94xf/468_people_took_their_lives_every_day_in_22_ncrb/
621   https://www.reddit.com/r/india/comments/18b8zxk/over_the_weekend_i_set_two_new_indian_freediving/
622 https://www.reddit.com/r/india/comments/18b8wgv/india_has_the_highest_number_of_vegetarians_report/
623   https://www.reddit.com/r/india/comments/18b8prm/why_return_of_chandrayaan3s_propulsion_module_to/
624      https://www.reddit.com/r/india/comments/18b8blu/lone_100m_runner_in_infamous_delhi_meet_fails/
625        https://www.reddit.com/r/india/comments/18b84j5/join_youtube_educator_dhruv_rathee_recently/
626                    https://www.reddit.com/r/india/comments/18b80gm/whats_killing_dehraduns_litchis/
627      https://www.reddit.com/r/india/comments/18b7wg2/accounts_from_china_posed_as_indians_tried_to/
628  https://www.reddit.com/r/india/comments/18b6uh3/seeking_travel_advice_rajdhani_express_2a_journey/
629  https://www.reddit.com/r/india/comments/18b6nk0/cid_actor_dinesh_phadnis_passes_away_due_to_liver/
630        https://www.reddit.com/r/india/comments/18b5wll/friend_not_returning_money_which_i_lent_him/
631        https://www.reddit.com/r/india/comments/18b5uy8/telangana_congress_faces_revolt_on_cms_name/
632        https://www.reddit.com/r/india/comments/18b5siy/heart_attack_deaths_increased_by_12_in_2022/
633    https://www.reddit.com/r/india/comments/18b3m1c/isro_brings_back_chandrayaan3_propulsion_module/
634     https://www.reddit.com/r/india/comments/18b36oo/how_kcr_defeated_kcr_in_telangana_polls_by_not/
635   https://www.reddit.com/r/india/comments/18b2mak/participate_in_our_contest_or_cast_your_vote_for/
636  https://www.reddit.com/r/india/comments/18b23b8/no_disruptions_in_parliament_this_time_india_bloc/
637        https://www.reddit.com/r/india/comments/18b20kt/how_a_toxic_poll_campaign_came_back_to_bite/
638      https://www.reddit.com/r/india/comments/18b1h2o/468_people_took_their_lives_every_day_in_2022/
639                         https://www.reddit.com/r/india/comments/18b1a3f/indias_international_trade/
640               https://www.reddit.com/r/india/comments/18axqvi/why_modi_is_cruising_to_a_third_term/
641                      https://www.reddit.com/r/india/comments/18aqobp/where_can_i_get_natural_honey/
642   https://www.reddit.com/r/india/comments/18aqlzb/creating_content_in_public_places_right_or_wrong/
643       https://www.reddit.com/r/india/comments/18aqknb/for_all_its_flaws_all_its_authoritarians_you/
644   https://www.reddit.com/r/india/comments/18aq4om/narayana_murthys_70hour_work_week_advice_reaches/
645    https://www.reddit.com/r/india/comments/18apmj6/lok_sabha_should_have_equal_representation_from/
646   https://www.reddit.com/r/india/comments/18aplns/indian_police_accused_of_harassing_sikh_activist/
647     https://www.reddit.com/r/india/comments/18aph99/this_guy_is_going_through_a_lot_because_of_the/
648      https://www.reddit.com/r/india/comments/18dg434/a_common_persons_view_of_bjp_government_since/
649           https://www.reddit.com/r/india/comments/18dfgnm/ed_charge_sheet_in_vivo_case_says_web_of/
650        https://www.reddit.com/r/india/comments/18df9ka/obese_indians_at_higher_risk_of_sleep_apnea/
651  https://www.reddit.com/r/india/comments/18df5pt/rbi_leaves_repo_rate_unchanged_at_65_for_5th_time/
652       https://www.reddit.com/r/india/comments/18devv4/the_pm_has_granted_approval_for_indias_first/
653       https://www.reddit.com/r/india/comments/18deod1/unearthing_the_mystery_of_sinauli_secrets_of/
654  https://www.reddit.com/r/india/comments/18deeym/up_gang_rape_and_murder_of_dalit_woman_death_in_a/
655       https://www.reddit.com/r/india/comments/18ddn2b/why_caste_divides_marathas_as_they_rally_for/
656       https://www.reddit.com/r/india/comments/18ddl0d/evil_spreading_fast_haryana_bjp_mp_seeks_law/
657    https://www.reddit.com/r/india/comments/18ddeta/bjp_vs_nonbjp_states_your_views_and_opinion_for/
658          https://www.reddit.com/r/india/comments/18dda3f/sc_verdict_on_dec_11_on_pleas_challenging/
659      https://www.reddit.com/r/india/comments/18d9g0r/403_indian_students_died_in_foreign_countries/
660    https://www.reddit.com/r/india/comments/18d9ee8/canada_to_limit_study_permits_for_international/
661         https://www.reddit.com/r/india/comments/18d6efq/500_note_holders_rbi_issued_new_guidelines/
662     https://www.reddit.com/r/india/comments/18d3t62/painkiller_meftal_can_lead_to_adverse_reaction/
663              https://www.reddit.com/r/india/comments/18d2fej/bitter_fruits_ms_swaminathan_19252023/
664  https://www.reddit.com/r/india/comments/18d1imf/raw_cheifs_in_us_and_uk_faced_the_wrath_of_recent/
665  https://www.reddit.com/r/india/comments/18d0gt8/revanth_reddy_gets_going_on_day_1_as_telangana_cm/
666   https://www.reddit.com/r/india/comments/18d09zq/gautam_adanis_wealth_crosses_79_billion_as_share/
667      https://www.reddit.com/r/india/comments/18czr7o/rbis_heavy_hand_to_keep_indian_rupee_in_tight/
668      https://www.reddit.com/r/india/comments/18cvrsz/can_i_ask_for_a_cut_of_the_selling_price_if_i/
669               https://www.reddit.com/r/india/comments/18cutkd/which_hdfc_debit_card_to_choose_from/
670                         https://www.reddit.com/r/india/comments/18cxq26/act_fibernet_network_issue/
671                            https://www.reddit.com/r/india/comments/18cwlhp/do_you_believe_in_nazar/
672   https://www.reddit.com/r/india/comments/18cttss/fellow_indians_kindly_suggest_some_good_language/
673    https://www.reddit.com/r/india/comments/18ctt2e/dont_share_anything_or_progressive_plan_of_your/
674     https://www.reddit.com/r/india/comments/18cyu2e/dunzos_woes_deepen_as_november_salaries_remain/
675                   https://www.reddit.com/r/india/comments/18cyo3m/the_semiconductor_fomo_for_india/
676          https://www.reddit.com/r/india/comments/18cy2k9/india_urged_to_set_up_10_bn_fund_for_chip/
677       https://www.reddit.com/r/india/comments/18cwgja/songs_from_the_kitchens_of_rural_india_paris/
678   https://www.reddit.com/r/india/comments/18cv801/book_extract_pranab_mukherjees_diary_note_rahuls/
679          https://www.reddit.com/r/india/comments/18ctwjd/when_can_india_achieve_net_zero_emissions/
680  https://www.reddit.com/r/india/comments/18cue4y/hello_pet_parents_your_insights_needed_share_your/
681   https://www.reddit.com/r/india/comments/18cstgw/just_got_a_1rs_credit_in_my_account_via_gpay_and/
682                            https://www.reddit.com/r/india/comments/18ctagx/fedex_call_is_this_scam/
683     https://www.reddit.com/r/india/comments/18cuhxh/hi_this_is_manisha_abhinandan_from_newslaundry/
684     https://www.reddit.com/r/india/comments/18ctukd/behind_bengaluru_bomb_hoax_a_womans_attempt_to/
685     https://www.reddit.com/r/india/comments/18cthmi/join_manoj_bajpayee_on_8th_december_at_5_pm_on/
686     https://www.reddit.com/r/india/comments/18ctgyg/narendra_modi_government_stonewalls_queries_on/
687          https://www.reddit.com/r/india/comments/18cqtzz/i_am_32_year_old_station_master_in_indian/
688    https://www.reddit.com/r/india/comments/18crh0q/should_i_cancel_plans_to_visit_tiruapti_madurai/
689    https://www.reddit.com/r/india/comments/18c71e0/advice_needed_27_never_had_a_job_am_i_doomed_if/
690       https://www.reddit.com/r/india/comments/18c70mc/is_jyotish_popular_among_young_indians_today/
691      https://www.reddit.com/r/india/comments/18c6w8a/i_fucked_my_life_in_every_possible_way_and_it/
692    https://www.reddit.com/r/india/comments/18c6cb0/im_a_fresher_and_would_love_to_get_some_opinion/
693    https://www.reddit.com/r/india/comments/18csras/no_question_of_equitable_treatment_to_us_canada/
694                      https://www.reddit.com/r/india/comments/18csq06/who_were_the_sultans_of_delhi/
695                                     https://www.reddit.com/r/india/comments/18csptv/jio_home_issue/
696          https://www.reddit.com/r/india/comments/18crpia/bengaluru_traffic_police_likely_to_launch/
697  https://www.reddit.com/r/india/comments/18cr1az/extortion_fears_grip_indian_business_community_in/
698        https://www.reddit.com/r/india/comments/18cqbet/kerala_doctor_dies_by_suicide_after_wedding/
699                             https://www.reddit.com/r/india/comments/18cf8yc/pov_you_live_in_mumbai/
700   https://www.reddit.com/r/india/comments/18cl7vw/help_what_can_i_do_to_take_down_a_illegal_godown/
701                   https://www.reddit.com/r/india/comments/18cm57l/this_is_the_real_indian_railways/
702             https://www.reddit.com/r/india/comments/18cplt5/the_hypocrisy_of_bjp_mp_gautam_gambhir/
703       https://www.reddit.com/r/india/comments/18cpk78/reuters_takes_down_blockbuster_hackerforhire/
704    https://www.reddit.com/r/india/comments/18cotga/this_is_our_kashi_not_karachi_newly_elected_bjp/
705      https://www.reddit.com/r/india/comments/18con5j/gdp_per_capita_of_indian_states_compared_with/
706  https://www.reddit.com/r/india/comments/18co1md/ayodhya_ram_mandir_opening_sachin_tendulkar_virat/
707  https://www.reddit.com/r/india/comments/18clinj/veg_nonveg_thalis_get_costlier_in_november_report/
708                              https://www.reddit.com/r/india/comments/18cjtoo/people_vs_politicians/
709     https://www.reddit.com/r/india/comments/18cj6fz/are_the_rules_on_international_drivers_permits/
710               https://www.reddit.com/r/india/comments/18cffor/this_new_capt_america_wears_a_turban/
711  https://www.reddit.com/r/india/comments/18cczn8/delhi_police_on_alert_after_khalistani_separatist/
712       https://www.reddit.com/r/india/comments/18cbmhp/kerala_muslim_mans_home_destroyed_by_rss_men/
713       https://www.reddit.com/r/india/comments/18cavpx/8_independent_mlasbin_rajasthan_critical_for/
714      https://www.reddit.com/r/india/comments/18c60qs/what_are_some_of_the_most_glaring_problems_of/
715                             https://www.reddit.com/r/india/comments/18c9svc/thoughts_on_bk_shivani/
716  https://www.reddit.com/r/india/comments/18c9rvc/editable_map_of_the_jammubaramulla_line_including/
717              https://www.reddit.com/r/india/comments/18c8d6p/for_anyone_wishing_to_study_in_the_uk/
718   https://www.reddit.com/r/india/comments/18c80y0/man_held_for_beating_dalit_for_using_jai_bhim_in/
719     https://www.reddit.com/r/india/comments/18c7mmq/a_century_of_nationalism_the_tagore_gandhi_and/
720    https://www.reddit.com/r/india/comments/18c7atn/the_people_keeping_indias_typewriters_alive_bbc/
721   https://www.reddit.com/r/india/comments/18c6zty/hi_i_am_dhruv_rathee_a_youtube_educator_recently/
722       https://www.reddit.com/r/india/comments/18c6fgz/please_suggest_cheap_and_good_enough_violins/
723       https://www.reddit.com/r/india/comments/18c66u0/apple_wants_iphone_16_batteries_to_come_from/
724                  https://www.reddit.com/r/india/comments/18c6624/qatar_visa_on_arrival_for_indians/
725   https://www.reddit.com/r/india/comments/18c5b06/can_i_get_hiv_test_done_in_india_without_doctors/
726    https://www.reddit.com/r/india/comments/18c5fka/how_is_the_uk_for_pursuing_masters_as_an_indian/
727      https://www.reddit.com/r/india/comments/18c5gse/to_people_working_in_nontech_roles_how_do_you/
728       https://www.reddit.com/r/india/comments/18c5rlw/no_one_will_remember_us_indias_hero_rat_hole/
729           https://www.reddit.com/r/india/comments/18c5gav/india_reveals_that_it_has_returned_lunar/
730       https://www.reddit.com/r/india/comments/18c5agq/in_the_salt_deserts_bordering_pakistan_india/
731    https://www.reddit.com/r/india/comments/18c545a/laidoff_need_referral_sde1_full_stack_1_year_of/
732            https://www.reddit.com/r/india/comments/18c4t99/where_do_rich_people_dump_their_clothes/
733                    https://www.reddit.com/r/india/comments/18c4s9h/lifafa_concert_dec_10_bangalore/
734  https://www.reddit.com/r/india/comments/18c40c3/byjus_financial_crisis_employee_pf_credit_stopped/
735         https://www.reddit.com/r/india/comments/18c3nro/blue_dart_marking_package_as_consignee_not/
736            https://www.reddit.com/r/india/comments/18c32hd/can_india_be_a_significant_player_in_ai/
737    https://www.reddit.com/r/india/comments/18by5px/since_everyone_is_showing_their_coins_here_some/
738     https://www.reddit.com/r/india/comments/18by483/whos_in_favor_of_a_military_draft_on_young_men/
739    https://www.reddit.com/r/india/comments/18bxsdh/is_india_moving_back_to_monopoly_or_license_raj/
740         https://www.reddit.com/r/india/comments/18c4wem/90_newly_elected_mlas_out_of_230_in_madhya/
741        https://www.reddit.com/r/india/comments/18c0h4e/employer_deducting_gratuity_from_my_monthly/
742                 https://www.reddit.com/r/india/comments/18byzp5/travel_vaccinations_for_4_year_old/
743           https://www.reddit.com/r/india/comments/18bwkpd/going_backwards_in_time_by_penpencildraw/
744                  https://www.reddit.com/r/india/comments/18bwesp/how_do_i_find_an_account_with_rbi/
745     https://www.reddit.com/r/india/comments/18c3u3z/gst_evasion_of_rs_151_lakh_crore_detected_till/
746     https://www.reddit.com/r/india/comments/18c3a95/crimes_against_women_conviction_rate_in_up_180/
747                   https://www.reddit.com/r/india/comments/18bjpor/main_reason_for_farmers_problems/

Tokenizing the corpora by discarding punctuation, numbers, symbols, URLs, and English and Hindi stopwords:

# tokenizing hindutvarises
hindutvarises_tokens <- tokens(hindutvarises_corpus, remove_punct = T,
                                    remove_numbers = T, remove_symbols = T,
                               remove_url = T)
hindutvarises_tokens <- tokens_select(hindutvarises_tokens, 
                     pattern = stopwords(c("en")),
                     selection = "remove")


hindi_stop <- get_stopwords(language = "hi", source = "stopwords-iso")
hindutvarises_tokens <- tokens_select(hindutvarises_tokens, 
                     pattern = hindi_stop$word,
                     selection = "remove")

length(hindutvarises_tokens) # 924
[1] 924
print(hindutvarises_tokens)
Tokens consisting of 924 documents and 7 docvars.
text1 :
[1] "Police" "jihad"  "Bengal"

text2 :
[1] "always" "win"   

text3 :
[1] "Sab"      "Dekhenge"

text4 :
 [1] "LawbeatInd"           "Uttarakhand"          "HC"                  
 [4] "uploads"              "order"                "denying"             
 [7] "bail"                 "Waseem"               "Rizvi"               
[10] "HaridwarDharamSansad" "huge"                 "derogatory"          
[ ... and 13 more ]

text5 :
 [1] "OLD"       "JNU"       "Professor" "Nivedita"  "Menon"     "tells"    
 [7] "students"  "Hindu"     "Society"   "violent"   "society"   "world"    

text6 :
[1] "Jai"     "shri"    "Ram"     "Jai"     "shri"    "Krishna"

[ reached max_ndoc ... 918 more documents ]
hindutvarises_dfm <- dfm(hindutvarises_tokens)
dim(hindutvarises_dfm) # 924 5512
[1]  924 5512
set.seed(1234)
# draw the wordcloud
textplot_wordcloud(hindutvarises_dfm, min_count = 20, random_order = FALSE, color = "orange")

This document-feature matrix has 924 rows and 5,512 columns. From the wordcloud generated, it is evident that ‘hindu’ is the most frequent word in this subreddit’s post content, followed by similar words such as ‘hindus’ and ‘hinduism’. Some words related to Hinduism are also visible, such as ‘hanuman’, ‘shiv’, and ‘ram.’ Some single letters like ‘g’, ‘m’, and ‘k’ are also frequently occuring, while could be due to accidental spaces between words. Notably, ‘muslim’ and ‘muslims’ are also frequently occurring words.

Wordcloud

# tokenizing india
india_tokens <- tokens(india_corpus, remove_punct = T,
                                    remove_numbers = T, remove_symbols = T, remove_url = T)
india_tokens <- tokens_select(india_tokens, 
                     pattern = stopwords(c("en")),
                     selection = "remove")

india_tokens <- tokens_select(india_tokens, 
                     pattern = hindi_stop$word,
                     selection = "remove")

length(india_tokens) # 747
[1] 747
print(india_tokens)
Tokens consisting of 747 documents and 7 docvars.
text1 :
 [1] "Big"       "fat"       "weddings"  "India's"   "soft"      "power"    
 [7] "abroad"    "just"      "like"      "Bollywood" "stop"      "export"   

text2 :
 [1] "Collapsed"  "Indian"     "tunnel"     "safety"     "exit"      
 [6] "built"      "geological" "fault"      "panel"      "member"    

text3 :
[1] "Bengaluru" "airport"   "ask"       "put"       "gadgets"   "plastic"  
[7] "trays"    

text4 :
 [1] "NDTV"      "Class"     "Boys"      "Attack"    "Classmate" "Compass"  
 [7] "Times"     "Fight"     "School"    "happening" "Indian"    "Schools"  

text5 :
 [1] "Happening"    "tomorrow"     "Join"         "us"           "dive"        
 [6] "Regulatory"   "dark"         "clouds"       "loom"         "OTT"         
[11] "platforms"    "Broadcasting"
[ ... and 3 more ]

text6 :
[1] "months"  "victims" "Sham"    "stock"   "scheme"  "pulls"   "big"    
[8] "con"    

[ reached max_ndoc ... 741 more documents ]
india_dfm <- dfm(india_tokens)
dim(india_dfm) # 747 9004
[1]  747 9004
set.seed(1234)
# draw the wordcloud
textplot_wordcloud(india_dfm, min_count = 40, random_order = FALSE, color = "orange")

This document-feature matrix india_dfm has 747 rows and 9,004 columns. In its wordcloud, ‘india’ is the most frequently occurring word, followed by common words such as ‘just’, ‘can’, and ‘people.’ Compared to the previous wordcloud, this one has more general terms that aren’t particularly related to religion, which makes sense since this subreddit is used as a forum for general questions.

Examining the usage of the term “muslim” and “modi” in both corpora and its first ten uses so we can understand the context in which it is used:

# "muslim"
# check the use of "muslim" in hindutvarises
kwic_muslim_hindutva <- kwic(hindutvarises_corpus,
                        pattern = c("muslim"),
                        window = 10)
Warning: 'kwic.corpus()' is deprecated. Use 'tokens()' first.
# look at the first few uses
head(kwic_muslim_hindutva)
Keyword-in-context with 6 matches.                                                                        
   [text32, 5]                     When Shivsena challenged a | muslim |
   [text60, 2]                                           Good | Muslim |
   [text60, 5]                             Good Muslim or Bad | Muslim |
 [text100, 11] Pakistan is not a place it's a Thought seen in | Muslim |
  [text105, 1]                                                | MUSLIM |
  [text130, 6]                 First pakistan map proposed by | muslim |
                                                       
 to recite Hanuman Chalisa                             
 or Bad Muslim koo Leaker Sabmit Patra ne Bajai Hindu  
 koo Leaker Sabmit Patra ne Bajai Hindu ke Khilaf bolne
 Areas In India                                        
 BABAS AND ILLEGAL NAMAZ                               
 league's Rahmat Ali to divide India for muslims       
# check the use of "muslim" in india
kwic_muslim_india <- kwic(india_corpus,
                        pattern = c("muslim"),
                        window = 10)
Warning: 'kwic.corpus()' is deprecated. Use 'tokens()' first.
# look at the first few uses
head(kwic_muslim_india)
Keyword-in-context with 6 matches.                                                                          
  [text103, 66]                     is If a Guy is Hindu and the girl is |
  [text103, 76] Muslim they will have better acceptance than a guy being |
   [text295, 3]                                               Decline In |
 [text323, 196]                parked in front of the gate, there were 2 |
  [text341, 38]       has this country came down to It's either Hindu VS |
   [text393, 6]                        K'taka: Visually Impaired Elderly |
                                                                  
 Muslim | they will have better acceptance than a guy being Muslim
 Muslim | and a girl being Hindu in today's time. If              
 Muslim | Enrolment In Higher Education, Says Study               
 Muslim | women in the middle of the mob, carrying bags           
 Muslim | BJP VS INC and just religion, religion and more         
 Muslim | Man Forced to Chant' Jai Shri Ram,'                     

In r/HindutvaRises, there is a clear negative sentiment attached to posts with this term. For example, some entries describe incidents of forced religious conversion of Hindus to Islam and how the partition of Pakistan and India was a good thing. On the other hand, r/India, some users express disdain over religious polarization in India, while others report on news using the term, remaining more neutral in its usage.

# "modi"
# check the use of "modi" in hindutvarises
kwic_modi_hindutva <- kwic(hindutvarises_corpus,
                        pattern = c("modi"),
                        window = 10)
Warning: 'kwic.corpus()' is deprecated. Use 'tokens()' first.
# look at the first few uses
head(kwic_modi_hindutva)
Keyword-in-context with 6 matches.                                                                          
  [text76, 5]                                    Why I don't like | Modi |
 [text76, 23]     I'm extremely Hindutva, but it looks to me like | Modi |
 [text76, 80]   Hindu Rashtra hasn't been made! And it looks like | Modi |
 [text76, 98] going to continue to live in the sickular hellhole. | Modi |
 [text95, 22]     BJP is not equals congress. BJP may have Sushil | Modi |
 [text283, 2]                                              Hokage | Modi |
                                                 
 ( and I'm not a libtard ) I'm extremely Hindutva
 has gotten a bit lazy. 1. He still              
 isn't going to make it. We're going to continue 
 needs to ramp up his game. Unless we see        
 , Khattar, Fadnavis etc but it also has Yogi    
 Sama is a new Hindutva anime page! Find amazing 
# check the use of "modi" in india
kwic_modi_india <- kwic(india_corpus,
                        pattern = c("modi"),
                        window = 10)
Warning: 'kwic.corpus()' is deprecated. Use 'tokens()' first.
# look at the first few uses
head(kwic_modi_india)
Keyword-in-context with 6 matches.                                                                               
  [text18, 19]      big families' to hold weddings abroad, says Narendra | Modi
   [text39, 6]                              India won't disappoint, says | Modi
  [text113, 8]                    Gandhi Was Mahapurush of Last Century, | Modi
  [text241, 3]                                                    Can PM | Modi
  [text292, 4]                                        Things named after | Modi
 [text292, 69] to the relentless zeal and innate beauty of Shri Narendra | Modi
                                                  
 |                                                
 | as he invites the world' to invest in our      
 | Yugpurush of This One: Vice-President Dhankar  
 | Be India's Next Astronaut? What NASA Chief Said
 | in last few years.* New Lotus species -        
 | .* RapidX was renamed as Namoh bharat. The     

In r/HindutvaRises, Modi is seen as not extreme enough in advancing the Hindutva agenda. r/India users have a more mixed reaction in their usage of this term, with most of them reading as news headlines.

Feature Co-Occurrence Matrix

Similar to the wordcloud results, the most frequently occurring terms in hindutvarises_dfm are “hindu”, “g”, “hindus”, “india”, and single letters like “k” and “m”. In india_dfm, these are “can”, “like”, “india”, “people”, and “just”.

topfeatures(hindutvarises_dfm, 20)
   hindu        g   hindus        m    india      amp        k     like 
     220      194      130      130      120      102       97       84 
     can hinduism   people      day  muslims       us   indian    think 
      74       73       64       63       58       57       55       54 
      m0       9h     even     shiv 
      54       51       50       50 
topfeatures(india_dfm, 20)
 india    can   like people   just    amp    get   know    one      s   time 
   403    303    252    229    199    190    188    184    166    156    155 
indian   help    now   want   also   good   even   need   work 
   147    142    142    136    136    125    122    113    110 

Creating a feature co-occurrence matrix for hindutvarises_dfm:

# create fcm from dfm
hindutvarises_fcm <- fcm(hindutvarises_dfm)

# check the dimensions (i.e., the number of rows and the number of columnns) of the matrix we created
dim(hindutvarises_fcm)
[1] 5512 5512
# pull the top features
myFeatures1 <- names(topfeatures(hindutvarises_fcm, 30))

# retain only those top features as part of our matrix
even_smaller_fcm1 <- fcm_select(hindutvarises_fcm, pattern = myFeatures1, selection = "keep")

# check dimensions
dim(even_smaller_fcm1)
[1] 30 30
# compute size weight for vertices in network
size1 <- log(colSums(even_smaller_fcm1))

set.seed(1234)
# create plot
textplot_network(even_smaller_fcm1, vertex_size = size1/ max(size1) * 3,edge_color = "orange")

The feature-co-occurrence matrix above shows a slight fragmentation in the discussion of terms, possibly indicating the presence of echo chambers since some conversations seem to be limited to certain users. The biggest network includes commonly used Hindutva terms such as ‘akhand’ and ‘bharat’, which when used together translates to ‘Undivided India.’ This idea envisions India claim over, and intention to unify with, its neighboring countries of Bangladesh, Afghanistan, Pakistan, Myanmar, and Sri Lanka. Religious terms such as ‘diwali’, ‘asur’, and ‘kali’ have also been found to occur together. ‘#x200b’ is an anomaly in this matrix and is a unicode character code for zero-width space, and so is ‘amp’ which stands for ‘ampersand’ (&).

Creating a feature co-occurrence matrix for india_dfm:

# create fcm from dfm
india_fcm <- fcm(india_dfm)

# check the dimensions (i.e., the number of rows and the number of columnns) of the matrix we created
dim(india_fcm)
[1] 9004 9004
# pull the top features
myFeatures2 <- names(topfeatures(india_fcm, 30))

# retain only those top features as part of our matrix
even_smaller_fcm2 <- fcm_select(india_fcm, pattern = myFeatures2, selection = "keep")

# check dimensions
dim(even_smaller_fcm2)
[1] 30 30
# compute size weight for vertices in network
size2 <- log(colSums(even_smaller_fcm2))

# create plot
textplot_network(even_smaller_fcm2, vertex_size = size2/ max(size2) * 3, edge_color = "orange")

This subreddit’s co-occurrence matrix involves a lot more words commonly used in general conversations such as ‘started’, ‘people’, and ‘also’. Unlike the previous subreddit’s matrix, this network is not fragmented at all and is much more dense, suggesting a greater consensus and interconnectedness in discussions.

Sentiment Analysis

In this section, I’ll be using dictionary analysis to analyze sentiment with the NRC dictionary. First, I’m creating new document-feature matrices for this analysis:

# hindutvarises

hindutvarises_dfm_nrc <- hindutvarises_tokens %>%
  tokens_tolower() %>%
  dfm() %>%
  dfm_lookup(data_dictionary_NRC)
  
  
dim(hindutvarises_dfm_nrc) # 924  10
[1] 924  10
head(hindutvarises_dfm_nrc, 10) # 10 documents, 10 features (62.00% sparse) and 7 docvars
Document-feature matrix of: 10 documents, 10 features (66.00% sparse) and 7 docvars.
       features
docs    anger anticipation disgust fear joy negative positive sadness surprise
  text1     0            0       0    1   0        0        1       0        0
  text2     0            0       0    0   0        0        0       0        0
  text3     0            0       0    0   0        0        0       0        0
  text4     2            2       1    2   0        3        1       2        0
  text5     1            0       1    1   0        1        1       0        1
  text6     1            1       0    0   0        1        0       0        0
       features
docs    trust
  text1     1
  text2     0
  text3     0
  text4     3
  text5     1
  text6     0
[ reached max_ndoc ... 4 more documents ]
class(hindutvarises_dfm_nrc)
[1] "dfm"
attr(,"package")
[1] "quanteda"
# india
india_dfm_nrc <- india_tokens %>%
  tokens_tolower() %>%
  dfm() %>%
  dfm_lookup(data_dictionary_NRC)
  
  
dim(india_dfm_nrc) # 747  10
[1] 747  10
head(india_dfm_nrc, 10) # 10 documents, 10 features (65.00% sparse) and 7 docvars
Document-feature matrix of: 10 documents, 10 features (65.00% sparse) and 7 docvars.
       features
docs    anger anticipation disgust fear joy negative positive sadness surprise
  text1     0            0       1    0   0        1        0       1        0
  text2     0            0       0    0   0        1        0       1        0
  text3     0            1       0    0   0        0        0       0        0
  text4     2            0       0    2   0        2        0       0        0
  text5     0            2       0    2   0        2        1       1        0
  text6     1            0       1    0   0        2        0       0        0
       features
docs    trust
  text1     0
  text2     0
  text3     0
  text4     2
  text5     0
  text6     0
[ reached max_ndoc ... 4 more documents ]
class(india_dfm_nrc)
[1] "dfm"
attr(,"package")
[1] "quanteda"

Creating a polarity measure:

# hindutvarises
df_hindutvarises_nrc <- convert(hindutvarises_dfm_nrc, to = "data.frame")

df_hindutvarises_nrc$polarity <- (df_hindutvarises_nrc$positive - df_hindutvarises_nrc$negative)/(df_hindutvarises_nrc$positive + df_hindutvarises_nrc$negative)

df_hindutvarises_nrc$polarity[(df_hindutvarises_nrc$positive + df_hindutvarises_nrc$negative) == 0] <- 0

# india
df_india_nrc <- convert(india_dfm_nrc, to = "data.frame")

df_india_nrc$polarity <- (df_india_nrc$positive - df_india_nrc$negative)/(df_india_nrc$positive + df_india_nrc$negative)

df_india_nrc$polarity[(df_india_nrc$positive + df_india_nrc$negative) == 0] <- 0

Graphing the distribution of polarity scores in both subreddits:

# hindutvarises
nrc_hindutvarises_pos <- ggplot(df_hindutvarises_nrc,aes(fill="orange")) +
  geom_histogram(aes(x=polarity)) +
  theme_bw() + 
  ggtitle('r/HindutvaRises') + guides(fill="none")

# india
nrc_india_pos <- ggplot(df_india_nrc,aes(fill="orange")) +
  geom_histogram(aes(x=polarity)) +
  theme_bw() + ylim(0, 500) +
  ggtitle('r/India') + guides(fill="none")

nrc_hindutvarises_pos + nrc_india_pos + plot_annotation(
  title = 'Polarity Score Distribution')
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Clearly, a lot of posts have been classified as “neutral” in polarity in both subreddits, particularly in the smaller subreddit (more than 450). There are more positively coded posts and titles in r/India than r/HindutvaRises.

Looking at some of the posts that were classified as neutral:

# hindutvarises
writeLines(head(hindutvarises_corpus[which(df_hindutvarises_nrc$polarity == 0)]))
We will always win 
Sab Dekhenge 
[OLD] JNU Professor Nivedita Menon tells students "Hindu Society" is the most violent society in world 
Never Forget! Never Forgive the perpetrators, the enablers and the whitewashers! 
Jai Bhavani , jai shivaji 
What is the main threat to traditional Hinduism and Hindu values in India? If you had to name one thing that you believe puts Hindutva under threat, what would that be?
# india
writeLines(head(india_corpus[which(df_india_nrc$polarity == 0)]))
Bengaluru airport won't ask you to put gadgets in plastic trays. Here's why 
Will rename Hyderabad as Bhagyangar if BJP comes to power, says Kishan Reddy 
Decathlon is Pathetic I ordered a backpack from Decathlon India official website, and it was a prepaid order. I placed the order on 22nd of November. And yesterday(26/11/23) I got a message from them decathlon saying that my order has been delivered. But I didn't receive the order neither I got a call from any delivery guy. And the ridiculous part is that, they mentioned that the order was delivered on 27/11/23 where as they sent me the email of order delivered on 26/11/23 at 6pm. I'm seriously confused what to do, tried reaching out to them but they're not picking up the call. Please guide me, what to do in this situation.
48% of complaints on National Consumer Helpline against e-commerce players during Jan-Aug 
Anyone who wants to adopt these cuties, Gurugram 
Wedding venue suggestions! I wanted some suggestions for a wedding venue in the mountains or the woods in india! 
Has anyone tried? And how much was the approx cost?

For r/HindutvaRises, these results return posts and titles that seem to be either more negative or positive in sentiment. Two of the results are in Hindi as transliterated into English. In r/India, most of the posts classified as neutral polarity are general questions and calls for advice on shopping and other day-to-day events. Analyzing the text and title of posts as separate corpora yielded a similar distribution of results.

Structural Topic Modeling

r/HindutvaRises

Adding polarity to the main datasets and creating new document-feature matrices separated by the polarity value for this analysis. First, for r/HindutvaRises:

# hindutvarises
# adding sentiment polarity to dataset
hindutvarises$polarity <- df_hindutvarises_nrc$polarity

# separate dataset by polarity and created dfms
hindutvarises_polminus <- subset(hindutvarises, polarity < 0)
hindutvarises_polzero <- subset(hindutvarises, polarity == 0)
hindutvarises_polplus <- subset(hindutvarises, polarity > 0)

hindutvarises_minus_stm <- dfm(tokens(hindutvarises_polminus$title_text),
             tolower = TRUE,
             remove = stopwords("en"),
             remove_punct = TRUE,
             remove_symbols = TRUE,
             remove_numbers = TRUE,
             remove_url = TRUE)
Warning: '...' should not be used for tokens() arguments; use 'tokens()' first.
Warning: 'remove' is deprecated; use dfm_remove() instead
hindutvarises_zero_stm <- dfm(tokens(hindutvarises_polzero$title_text),
             tolower = TRUE,
             remove = stopwords("en"),
             remove_punct = TRUE,
             remove_symbols = TRUE,
             remove_numbers = TRUE,
             remove_url = TRUE)
Warning: '...' should not be used for tokens() arguments; use 'tokens()' first.

Warning: 'remove' is deprecated; use dfm_remove() instead
hindutvarises_plus_stm <- dfm(tokens(hindutvarises_polplus$title_text),
             tolower = TRUE,
             remove = stopwords("en"),
             remove_punct = TRUE,
             remove_symbols = TRUE,
             remove_numbers = TRUE,
             remove_url = TRUE)
Warning: '...' should not be used for tokens() arguments; use 'tokens()' first.

Warning: 'remove' is deprecated; use dfm_remove() instead
dim(hindutvarises_minus_stm) # 141 2182
[1]  141 2182
dim(hindutvarises_zero_stm) # 478 2100
[1]  478 2100
dim(hindutvarises_plus_stm) # 305 3141
[1]  305 3141

My code for choosing the most ideal k-value for these datasets did not run unfortunately, so I’m choosing my k-value as an arbitrary value of 4. Hence, I’ll be extracting 4 predominant topics in these datasets.

# choose our number of topics
k <- 4

# minus model
model_hindutvaminus <- stm(hindutvarises_minus_stm,
               K = k,
               data = hindutvarises_polminus,
               max.em.its = 1000,
               seed = 1234,
               init.type = "Spectral")
Beginning Spectral Initialization 
     Calculating the gram matrix...
     Finding anchor words...
    ....
     Recovering initialization...
    .....................
Initialization complete.
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 1 (approx. per word bound = -7.275) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 2 (approx. per word bound = -6.991, relative change = 3.900e-02) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 3 (approx. per word bound = -6.772, relative change = 3.133e-02) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 4 (approx. per word bound = -6.708, relative change = 9.401e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 5 (approx. per word bound = -6.691, relative change = 2.636e-03) 
Topic 1: hindus, can, schools, like, government 
 Topic 2: think, people, amp, m, theory 
 Topic 3: hindu, jai, religion, even, nationalists 
 Topic 4: ram, hindus, bjp, like, also 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 6 (approx. per word bound = -6.682, relative change = 1.280e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 7 (approx. per word bound = -6.673, relative change = 1.385e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 8 (approx. per word bound = -6.664, relative change = 1.313e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 9 (approx. per word bound = -6.657, relative change = 1.073e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 10 (approx. per word bound = -6.650, relative change = 9.454e-04) 
Topic 1: hindus, can, schools, government, india 
 Topic 2: think, people, amp, m, hinduism 
 Topic 3: hindu, jai, religion, nationalists, muslims 
 Topic 4: ram, hindus, like, know, also 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 11 (approx. per word bound = -6.645, relative change = 8.152e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 12 (approx. per word bound = -6.640, relative change = 8.293e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 13 (approx. per word bound = -6.635, relative change = 7.426e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 14 (approx. per word bound = -6.630, relative change = 7.537e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 15 (approx. per word bound = -6.623, relative change = 1.013e-03) 
Topic 1: hindus, schools, government, can, minority 
 Topic 2: think, people, amp, m, hinduism 
 Topic 3: hindu, jai, nationalists, shree, india 
 Topic 4: ram, hindus, like, know, religion 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 16 (approx. per word bound = -6.616, relative change = 1.078e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 17 (approx. per word bound = -6.608, relative change = 1.152e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 18 (approx. per word bound = -6.600, relative change = 1.259e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 19 (approx. per word bound = -6.576, relative change = 3.596e-03) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 20 (approx. per word bound = -6.558, relative change = 2.693e-03) 
Topic 1: hindus, schools, government, minority, india 
 Topic 2: amp, people, m, hinduism, theory 
 Topic 3: hindu, nationalists, jai, think, shree 
 Topic 4: ram, hindus, like, can, us 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 21 (approx. per word bound = -6.553, relative change = 7.680e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 22 (approx. per word bound = -6.548, relative change = 7.721e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 23 (approx. per word bound = -6.542, relative change = 9.737e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 24 (approx. per word bound = -6.536, relative change = 9.667e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 25 (approx. per word bound = -6.533, relative change = 4.725e-04) 
Topic 1: hindus, schools, hindu, government, india 
 Topic 2: amp, people, m, hinduism, theory 
 Topic 3: hindu, nationalists, shree, think, india 
 Topic 4: ram, hindus, can, muslims, like 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 26 (approx. per word bound = -6.530, relative change = 4.093e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 27 (approx. per word bound = -6.528, relative change = 2.442e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 28 (approx. per word bound = -6.527, relative change = 1.692e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 29 (approx. per word bound = -6.526, relative change = 1.876e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 30 (approx. per word bound = -6.525, relative change = 2.024e-04) 
Topic 1: hindus, schools, hindu, like, india 
 Topic 2: amp, people, m, hinduism, theory 
 Topic 3: hindu, nationalists, shree, india, moon 
 Topic 4: ram, hindus, jai, muslims, can 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 31 (approx. per word bound = -6.523, relative change = 1.745e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 32 (approx. per word bound = -6.522, relative change = 2.299e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 33 (approx. per word bound = -6.520, relative change = 2.379e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 34 (approx. per word bound = -6.519, relative change = 2.269e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 35 (approx. per word bound = -6.518, relative change = 1.810e-04) 
Topic 1: hindus, schools, hindu, like, minority 
 Topic 2: amp, people, m, hinduism, theory 
 Topic 3: hindu, nationalists, india, moon, page 
 Topic 4: ram, hindus, jai, muslims, can 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 36 (approx. per word bound = -6.517, relative change = 1.135e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 37 (approx. per word bound = -6.516, relative change = 1.156e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 38 (approx. per word bound = -6.515, relative change = 1.204e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 39 (approx. per word bound = -6.515, relative change = 1.253e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 40 (approx. per word bound = -6.514, relative change = 1.649e-04) 
Topic 1: hindus, schools, hindu, like, minority 
 Topic 2: amp, people, m, hinduism, theory 
 Topic 3: hindu, nationalists, india, moon, page 
 Topic 4: ram, hindus, jai, muslims, bjp 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 41 (approx. per word bound = -6.512, relative change = 1.638e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 42 (approx. per word bound = -6.511, relative change = 2.750e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 43 (approx. per word bound = -6.509, relative change = 3.166e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 44 (approx. per word bound = -6.506, relative change = 3.668e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 45 (approx. per word bound = -6.504, relative change = 4.235e-04) 
Topic 1: hindus, schools, hindu, like, can 
 Topic 2: amp, people, m, hinduism, india 
 Topic 3: hindu, nationalists, moon, india, page 
 Topic 4: ram, hindus, jai, muslims, shree 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 46 (approx. per word bound = -6.501, relative change = 3.357e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 47 (approx. per word bound = -6.500, relative change = 2.191e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 48 (approx. per word bound = -6.498, relative change = 2.309e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 49 (approx. per word bound = -6.497, relative change = 2.101e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 50 (approx. per word bound = -6.496, relative change = 1.488e-04) 
Topic 1: hindus, schools, hindu, like, can 
 Topic 2: amp, people, m, hinduism, india 
 Topic 3: hindu, nationalists, moon, india, think 
 Topic 4: ram, hindus, jai, muslims, shree 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 51 (approx. per word bound = -6.495, relative change = 1.136e-04) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 52 (approx. per word bound = -6.495, relative change = 8.118e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 53 (approx. per word bound = -6.494, relative change = 4.793e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 54 (approx. per word bound = -6.494, relative change = 3.074e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 55 (approx. per word bound = -6.494, relative change = 2.886e-05) 
Topic 1: hindus, schools, hindu, like, can 
 Topic 2: amp, people, m, hinduism, india 
 Topic 3: hindu, nationalists, moon, india, think 
 Topic 4: ram, hindus, jai, muslims, bjp 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 56 (approx. per word bound = -6.494, relative change = 5.668e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 57 (approx. per word bound = -6.493, relative change = 8.422e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 58 (approx. per word bound = -6.493, relative change = 9.016e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 59 (approx. per word bound = -6.492, relative change = 7.542e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 60 (approx. per word bound = -6.492, relative change = 6.547e-05) 
Topic 1: hindus, schools, hindu, like, can 
 Topic 2: amp, people, m, hinduism, india 
 Topic 3: hindu, nationalists, moon, india, think 
 Topic 4: ram, hindus, jai, muslims, bjp 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 61 (approx. per word bound = -6.492, relative change = 1.645e-05) 
.............................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Model Converged 
labelTopics(model_hindutvaminus)
Topic 1 Top Words:
     Highest Prob: hindus, schools, hindu, like, can, minority, india 
     FREX: schools, minority, private, rte, guru, pay, quota 
     Lift: _u, #bansnapchat, #kashmirihindus, 1700s, 1830s, 19th, 20as 
     Score: schools, private, rte, minority, quota, pay, hindus 
Topic 2 Top Words:
     Highest Prob: amp, people, m, hinduism, india, theory, g 
     FREX: theory, g, r, ancient, k, aryans, dravidians 
     Lift: -jai, @0m, #art, #ayodhya, #bhaktione, #hindu, #mahabharat 
     Score: theory, r, g, k, m, aryans, dravidians 
Topic 3 Top Words:
     Highest Prob: hindu, nationalists, moon, india, think, page, can 
     FREX: moon, fought, communities, nepal, daksha, solah, somvar 
     Lift: _army, _during, _ii, _war, _world, @benga1sultanate, 00ee584382e692a1fa390a4666b62a8f864c1a3d 
     Score: moon, nationalists, communities, nepal, daksha, solah, fought 
Topic 4 Top Words:
     Highest Prob: ram, hindus, jai, muslims, bjp, shree, mandir 
     FREX: ram, bjp, mandir, ban, remove, movies, shri 
     Lift: accused, akin, ambit, anger, assertive, attend, awareness 
     Score: ram, blasphemy, bjp, hindus, muslims, mandir, allies 
plot_hindutvaminus <- plot(model_hindutvaminus, type = "summary", main = "r/HindutvaRises Top Topics (Polarity < 0)")

# get the words
topicnames_hindutvaminus <- labelTopics(model_hindutvaminus, n=4)$frex

# set up an empty vector
topiclabels_hindutvaminus <- rep(NA, k)

# set up a loop to go through the topics and collapse the words to a single name
for (i in 1:k){
  topiclabels_hindutvaminus[i] <- paste(topicnames_hindutvaminus[i,], collapse = "_")
}

# print the names
topiclabels_hindutvaminus
[1] "schools_minority_private_rte"  "theory_g_r_ancient"           
[3] "moon_fought_communities_nepal" "ram_bjp_mandir_ban"           
# zero model
model_hindutvazero <- stm(hindutvarises_zero_stm,
               K = k,
               data = hindutvarises_polzero,
               max.em.its = 1000,
               seed = 1234,
               init.type = "Spectral")
Warning in dfm2stm(x, docvars, omit_empty = TRUE): Dropped 478 empty
document(s)
Beginning Spectral Initialization 
     Calculating the gram matrix...
     Finding anchor words...
    ....
     Recovering initialization...
    ....................
Initialization complete.
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 1 (approx. per word bound = -6.919) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 2 (approx. per word bound = -6.559, relative change = 5.202e-02) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 3 (approx. per word bound = -6.372, relative change = 2.849e-02) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 4 (approx. per word bound = -6.298, relative change = 1.154e-02) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 5 (approx. per word bound = -6.271, relative change = 4.335e-03) 
Topic 1: hindu, india, amp, muslim, nationalists 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: hindu, india, amp, nationalists, hindus 
 Topic 4: like, vedic, even, dharma, santana 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 6 (approx. per word bound = -6.227, relative change = 7.029e-03) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 7 (approx. per word bound = -6.126, relative change = 1.614e-02) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 8 (approx. per word bound = -6.108, relative change = 3.015e-03) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 9 (approx. per word bound = -6.105, relative change = 4.989e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 10 (approx. per word bound = -6.104, relative change = 1.593e-04) 
Topic 1: hindu, muslim, india, think, know 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: vedic, like, dharma, even, santana 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 11 (approx. per word bound = -6.103, relative change = 7.256e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 12 (approx. per word bound = -6.103, relative change = 3.340e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 13 (approx. per word bound = -6.102, relative change = 2.629e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 14 (approx. per word bound = -6.099, relative change = 3.529e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 15 (approx. per word bound = -6.098, relative change = 2.691e-04) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, dharma, even, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 16 (approx. per word bound = -6.097, relative change = 1.600e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 17 (approx. per word bound = -6.096, relative change = 1.208e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 18 (approx. per word bound = -6.096, relative change = 8.464e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 19 (approx. per word bound = -6.095, relative change = 1.110e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 20 (approx. per word bound = -6.094, relative change = 1.341e-04) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 21 (approx. per word bound = -6.094, relative change = 9.034e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 22 (approx. per word bound = -6.093, relative change = 4.491e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 23 (approx. per word bound = -6.093, relative change = 3.158e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 24 (approx. per word bound = -6.093, relative change = 3.288e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 25 (approx. per word bound = -6.093, relative change = 3.249e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 26 (approx. per word bound = -6.092, relative change = 2.773e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 27 (approx. per word bound = -6.092, relative change = 2.780e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 28 (approx. per word bound = -6.092, relative change = 1.561e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 29 (approx. per word bound = -6.092, relative change = 1.614e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 30 (approx. per word bound = -6.092, relative change = 4.829e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 31 (approx. per word bound = -6.091, relative change = 1.393e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 32 (approx. per word bound = -6.090, relative change = 1.439e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 33 (approx. per word bound = -6.090, relative change = 5.505e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 34 (approx. per word bound = -6.090, relative change = 2.784e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 35 (approx. per word bound = -6.089, relative change = 3.825e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 36 (approx. per word bound = -6.089, relative change = 3.536e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 37 (approx. per word bound = -6.089, relative change = 4.464e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 38 (approx. per word bound = -6.088, relative change = 7.847e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 39 (approx. per word bound = -6.088, relative change = 4.594e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 40 (approx. per word bound = -6.088, relative change = 3.620e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 41 (approx. per word bound = -6.088, relative change = 6.705e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 42 (approx. per word bound = -6.087, relative change = 1.038e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 43 (approx. per word bound = -6.086, relative change = 9.100e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 44 (approx. per word bound = -6.086, relative change = 3.600e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 45 (approx. per word bound = -6.086, relative change = 1.371e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 46 (approx. per word bound = -6.086, relative change = 1.024e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 47 (approx. per word bound = -6.086, relative change = 1.069e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 48 (approx. per word bound = -6.086, relative change = 2.471e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 49 (approx. per word bound = -6.085, relative change = 4.493e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 50 (approx. per word bound = -6.085, relative change = 6.098e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 51 (approx. per word bound = -6.084, relative change = 1.448e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 52 (approx. per word bound = -6.083, relative change = 2.404e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 53 (approx. per word bound = -6.082, relative change = 9.447e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 54 (approx. per word bound = -6.081, relative change = 1.601e-04) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 55 (approx. per word bound = -6.080, relative change = 1.518e-04) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 56 (approx. per word bound = -6.080, relative change = 5.744e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 57 (approx. per word bound = -6.079, relative change = 7.976e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 58 (approx. per word bound = -6.079, relative change = 9.989e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 59 (approx. per word bound = -6.079, relative change = 3.253e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 60 (approx. per word bound = -6.079, relative change = 1.573e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 61 (approx. per word bound = -6.078, relative change = 2.143e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 62 (approx. per word bound = -6.078, relative change = 2.130e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 63 (approx. per word bound = -6.078, relative change = 1.382e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 64 (approx. per word bound = -6.078, relative change = 2.761e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 65 (approx. per word bound = -6.078, relative change = 4.495e-05) 
Topic 1: hindu, muslim, india, think, place 
 Topic 2: g, m, k, m0, 9h 
 Topic 3: amp, hindu, india, hinduism, people 
 Topic 4: like, even, dharma, santana, vedic 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 66 (approx. per word bound = -6.078, relative change = 1.866e-05) 
....................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Model Converged 
labelTopics(model_hindutvazero)
Topic 1 Top Words:
     Highest Prob: hindu, muslim, india, think, place, know, like 
     FREX: r, support, secularism, bose, chandra, growth, subhas 
     Lift: accounts, admired, bose, chandra, democracy, growth, law 
     Score: growth, hindu, bose, chandra, subhas, secularism, think 
Topic 2 Top Words:
     Highest Prob: g, m, k, m0, 9h, day, shiv 
     FREX: g, m, k, m0, 9h, day, shiv 
     Lift: @5, @hinducafe, #shiv, 0g, 2@8, 2g, 2gd 
     Score: g, m, k, m0, 9h, shiv, 0m 
Topic 3 Top Words:
     Highest Prob: amp, hindu, india, hinduism, people, us, hindus 
     FREX: amp, us, bollywood, lanka, s, sri, akhand 
     Lift: amp, arabia, battle, boi, chennakeshava, claiming, committed 
     Score: amp, us, people, lanka, sri, nationalists, bollywood 
Topic 4 Top Words:
     Highest Prob: like, even, dharma, santana, vedic, kali, hindus 
     FREX: dharma, santana, kali, asur, well, become, evil 
     Lift: 25k, 600k, abrahamic, achieve, afghanistan, agnostic, allah 
     Score: santana, kali, asur, become, evil, karma, becoming 
plot_hindutvazero <-plot(model_hindutvazero, type = "summary", main = "r/HindutvaRises Top Topics (Polarity = 0)")

# get the words
topicnames_hindutvazero <- labelTopics(model_hindutvazero, n=4)$frex

# set up an empty vector
topiclabels_hindutvazero <- rep(NA, k)

# set up a loop to go through the topics and collapse the words to a single name
for (i in 1:k){
  topiclabels_hindutvazero[i] <- paste(topicnames_hindutvazero[i,], collapse = "_")
}

# print the names
topiclabels_hindutvazero
[1] "r_support_secularism_bose" "g_m_k_m0"                 
[3] "amp_us_bollywood_lanka"    "dharma_santana_kali_asur" 
# plus model
model_hindutvaplus <- stm(hindutvarises_plus_stm,
               K = k,
               data = hindutvarises_polplus,
               max.em.its = 1000,
               seed = 1234,
               init.type = "Spectral")
Beginning Spectral Initialization 
     Calculating the gram matrix...
     Finding anchor words...
    ....
     Recovering initialization...
    ...............................
Initialization complete.
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 1 (approx. per word bound = -7.531) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 2 (approx. per word bound = -7.178, relative change = 4.696e-02) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 3 (approx. per word bound = -6.904, relative change = 3.806e-02) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 4 (approx. per word bound = -6.846, relative change = 8.500e-03) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 5 (approx. per word bound = -6.821, relative change = 3.610e-03) 
Topic 1: hindu, #x200b, hinduism, want, god 
 Topic 2: hindu, muslims, akhand, trans, bharat 
 Topic 3: amp, hindus, india, can, us 
 Topic 4: diwali, mukesh, vats, lord, part 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 6 (approx. per word bound = -6.806, relative change = 2.214e-03) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 7 (approx. per word bound = -6.795, relative change = 1.612e-03) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 8 (approx. per word bound = -6.787, relative change = 1.217e-03) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 9 (approx. per word bound = -6.780, relative change = 9.793e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 10 (approx. per word bound = -6.774, relative change = 9.096e-04) 
Topic 1: hindu, #x200b, hinduism, want, god 
 Topic 2: hindu, akhand, muslims, trans, bharat 
 Topic 3: amp, india, hindus, us, can 
 Topic 4: diwali, mukesh, vats, lord, spiritual 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 11 (approx. per word bound = -6.768, relative change = 9.067e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 12 (approx. per word bound = -6.762, relative change = 9.041e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 13 (approx. per word bound = -6.756, relative change = 8.632e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 14 (approx. per word bound = -6.750, relative change = 8.207e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 15 (approx. per word bound = -6.747, relative change = 4.902e-04) 
Topic 1: hindu, amp, #x200b, hinduism, want 
 Topic 2: hindu, india, muslims, hindus, akhand 
 Topic 3: india, hindus, indian, us, can 
 Topic 4: diwali, lord, mukesh, vats, spiritual 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 16 (approx. per word bound = -6.744, relative change = 3.990e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 17 (approx. per word bound = -6.741, relative change = 4.300e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 18 (approx. per word bound = -6.738, relative change = 4.185e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 19 (approx. per word bound = -6.736, relative change = 3.026e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 20 (approx. per word bound = -6.735, relative change = 1.454e-04) 
Topic 1: hindu, amp, #x200b, hinduism, want 
 Topic 2: hindu, india, muslims, hindus, akhand 
 Topic 3: indian, india, hindus, us, can 
 Topic 4: diwali, lord, mukesh, vats, spiritual 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 21 (approx. per word bound = -6.735, relative change = 9.186e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 22 (approx. per word bound = -6.734, relative change = 1.096e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 23 (approx. per word bound = -6.733, relative change = 1.534e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 24 (approx. per word bound = -6.732, relative change = 1.241e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 25 (approx. per word bound = -6.732, relative change = 5.569e-05) 
Topic 1: hindu, amp, #x200b, hinduism, want 
 Topic 2: hindu, india, muslims, hindus, akhand 
 Topic 3: indian, india, hindus, us, can 
 Topic 4: diwali, lord, spiritual, mukesh, vats 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 26 (approx. per word bound = -6.732, relative change = 5.253e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 27 (approx. per word bound = -6.731, relative change = 8.318e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 28 (approx. per word bound = -6.730, relative change = 6.904e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 29 (approx. per word bound = -6.730, relative change = 5.464e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 30 (approx. per word bound = -6.730, relative change = 5.567e-05) 
Topic 1: hindu, amp, #x200b, hinduism, want 
 Topic 2: hindu, india, muslims, hindus, akhand 
 Topic 3: india, indian, hindus, us, hindu 
 Topic 4: diwali, lord, spiritual, mukesh, vats 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 31 (approx. per word bound = -6.729, relative change = 8.822e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 32 (approx. per word bound = -6.729, relative change = 7.269e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 33 (approx. per word bound = -6.729, relative change = 1.583e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Model Converged 
labelTopics(model_hindutvaplus)
Topic 1 Top Words:
     Highest Prob: hindu, amp, #x200b, hinduism, want, god, hindus 
     FREX: #x200b, police, army, eating, beef, pride, reading 
     Lift: #x200b, 1940s, 25th, 295a, aastik, ability, abstain 
     Score: #x200b, army, police, terrorists, god, eating, rise 
Topic 2 Top Words:
     Highest Prob: hindu, india, muslims, hindus, akhand, bharat, trans 
     FREX: trans, lie, sc, agni, census, fit, so-called 
     Lift: abdul, agatsya, al, ardhnarishwar, average, avtars, bahuchar 
     Score: trans, lie, sc, fit, agni, census, tfr 
Topic 3 Top Words:
     Highest Prob: india, indian, hindus, us, hindu, can, calendar 
     FREX: calendar, born, jai, abroad, government, hindi, break 
     Lift: 10-15, 13th, 2nd, 80k, ª, aamir, abcindianhindus 
     Score: calendar, government, jai, born, indian, success, retention 
Topic 4 Top Words:
     Highest Prob: diwali, lord, spiritual, mukesh, vats, part, m 
     FREX: diwali, mukesh, vats, g, puja, avatar, online 
     Lift: @cubicalyogi, @office_sansad, @sammyvada, #hindu, #mahabharat, #mahabharata, #ramanavami 
     Score: diwali, mukesh, vats, g, psychic, part, decor 
plot_hindutvaplus <- plot(model_hindutvaplus, type = "summary", main = "r/HindutvaRises Top Topics (Polarity > 0)")

# get the words
topicnames_hindutvaplus <- labelTopics(model_hindutvaplus, n=4)$frex

# set up an empty vector
topiclabels_hindutvaplus <- rep(NA, k)

# set up a loop to go through the topics and collapse the words to a single name
for (i in 1:k){
  topiclabels_hindutvaplus[i] <- paste(topicnames_hindutvaplus[i,], collapse = "_")
}

# print the names
topiclabels_hindutvaplus
[1] "#x200b_police_army_eating" "trans_lie_sc_agni"        
[3] "calendar_born_jai_abroad"  "diwali_mukesh_vats_g"     

It seems that topics related to Hinduism are present across all polarity score levels, and the model with terms coded as more positive includes ‘india’ more frequently across topics. Furthermore, the topic with the greatest proportion in this model are related to Hindu rituals and gods. In the model with terms coded as neutral, the most frequently occurring words are single letters such as ‘g’,‘m’, and ‘k’, which are probably typos. ‘K’ could also refer to the shortened version of ‘okay.’

r/India

Next, for r/India:

# india
# adding sentiment polarity to dataset
india$polarity <- df_india_nrc$polarity

# separate dataset by polarity and created dfms
india_polminus <- subset(india, polarity < 0)
india_polzero <- subset(india, polarity == 0)
india_polplus <- subset(india, polarity > 0)

india_minus_stm <- dfm(tokens(india_polminus$title_text),
             tolower = TRUE,
             remove = stopwords("en"),
             remove_punct = TRUE,
             remove_symbols = TRUE,
             remove_numbers = TRUE,
             remove_url = TRUE)
Warning: '...' should not be used for tokens() arguments; use 'tokens()' first.
Warning: 'remove' is deprecated; use dfm_remove() instead
india_zero_stm <- dfm(tokens(india_polzero$title_text),
             tolower = TRUE,
             remove = stopwords("en"),
             remove_punct = TRUE,
             remove_symbols = TRUE,
             remove_numbers = TRUE,
             remove_url = TRUE)
Warning: '...' should not be used for tokens() arguments; use 'tokens()' first.

Warning: 'remove' is deprecated; use dfm_remove() instead
india_plus_stm <- dfm(tokens(india_polplus$title_text),
             tolower = TRUE,
             remove = stopwords("en"),
             remove_punct = TRUE,
             remove_symbols = TRUE,
             remove_numbers = TRUE,
             remove_url = TRUE)
Warning: '...' should not be used for tokens() arguments; use 'tokens()' first.

Warning: 'remove' is deprecated; use dfm_remove() instead
dim(india_minus_stm) # 183 3171
[1]  183 3171
dim(india_zero_stm) # 157 1519
[1]  157 1519
dim(india_plus_stm) # 407 7314
[1]  407 7314
# choose our number of topics
k <- 4

# minus model
model_indiaminus <- stm(india_minus_stm,
               K = k,
               data = india_polminus,
               max.em.its = 1000,
               seed = 1234,
               init.type = "Spectral")
Beginning Spectral Initialization 
     Calculating the gram matrix...
     Finding anchor words...
    ....
     Recovering initialization...
    ...............................
Initialization complete.
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 1 (approx. per word bound = -7.505) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 2 (approx. per word bound = -7.455, relative change = 6.731e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 3 (approx. per word bound = -7.438, relative change = 2.234e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 4 (approx. per word bound = -7.429, relative change = 1.245e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 5 (approx. per word bound = -7.422, relative change = 9.082e-04) 
Topic 1: india, get, even, us, think 
 Topic 2: can, just, one, want, really 
 Topic 3: like, people, indian, know, got 
 Topic 4: s, time, never, amp, see 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 6 (approx. per word bound = -7.416, relative change = 8.095e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 7 (approx. per word bound = -7.410, relative change = 8.526e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 8 (approx. per word bound = -7.403, relative change = 8.998e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 9 (approx. per word bound = -7.397, relative change = 8.531e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 10 (approx. per word bound = -7.391, relative change = 7.732e-04) 
Topic 1: india, get, even, us, think 
 Topic 2: can, just, one, want, really 
 Topic 3: like, people, indian, know, got 
 Topic 4: s, time, amp, see, never 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 11 (approx. per word bound = -7.385, relative change = 7.464e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 12 (approx. per word bound = -7.379, relative change = 8.300e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 13 (approx. per word bound = -7.372, relative change = 9.215e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 14 (approx. per word bound = -7.365, relative change = 1.056e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 15 (approx. per word bound = -7.356, relative change = 1.200e-03) 
Topic 1: india, get, even, us, think 
 Topic 2: can, just, one, want, really 
 Topic 3: like, people, indian, know, got 
 Topic 4: s, time, amp, see, take 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 16 (approx. per word bound = -7.346, relative change = 1.261e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 17 (approx. per word bound = -7.337, relative change = 1.267e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 18 (approx. per word bound = -7.328, relative change = 1.191e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 19 (approx. per word bound = -7.320, relative change = 1.175e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 20 (approx. per word bound = -7.310, relative change = 1.311e-03) 
Topic 1: india, even, us, never, think 
 Topic 2: can, just, one, want, government 
 Topic 3: like, people, indian, know, say 
 Topic 4: s, amp, see, every, time 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 21 (approx. per word bound = -7.299, relative change = 1.557e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 22 (approx. per word bound = -7.288, relative change = 1.510e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 23 (approx. per word bound = -7.277, relative change = 1.486e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 24 (approx. per word bound = -7.265, relative change = 1.618e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 25 (approx. per word bound = -7.253, relative change = 1.625e-03) 
Topic 1: india, even, never, us, better 
 Topic 2: can, just, one, want, government 
 Topic 3: like, people, indian, know, say 
 Topic 4: s, see, amp, still, said 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 26 (approx. per word bound = -7.242, relative change = 1.578e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 27 (approx. per word bound = -7.230, relative change = 1.643e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 28 (approx. per word bound = -7.218, relative change = 1.655e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 29 (approx. per word bound = -7.207, relative change = 1.534e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 30 (approx. per word bound = -7.198, relative change = 1.310e-03) 
Topic 1: india, never, even, us, better 
 Topic 2: can, just, one, want, government 
 Topic 3: like, people, indian, say, get 
 Topic 4: s, back, call, t, still 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 31 (approx. per word bound = -7.189, relative change = 1.170e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 32 (approx. per word bound = -7.181, relative change = 1.176e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 33 (approx. per word bound = -7.172, relative change = 1.169e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 34 (approx. per word bound = -7.164, relative change = 1.205e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 35 (approx. per word bound = -7.154, relative change = 1.317e-03) 
Topic 1: india, even, never, can, us 
 Topic 2: one, just, can, want, government 
 Topic 3: people, like, indian, say, get 
 Topic 4: s, back, call, t, still 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 36 (approx. per word bound = -7.144, relative change = 1.451e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 37 (approx. per word bound = -7.134, relative change = 1.368e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 38 (approx. per word bound = -7.126, relative change = 1.155e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 39 (approx. per word bound = -7.118, relative change = 1.152e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 40 (approx. per word bound = -7.109, relative change = 1.160e-03) 
Topic 1: india, can, even, never, us 
 Topic 2: one, just, government, news, like 
 Topic 3: people, like, indian, just, say 
 Topic 4: s, back, can, t, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 41 (approx. per word bound = -7.102, relative change = 1.095e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 42 (approx. per word bound = -7.094, relative change = 1.094e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 43 (approx. per word bound = -7.086, relative change = 1.149e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 44 (approx. per word bound = -7.078, relative change = 1.142e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 45 (approx. per word bound = -7.070, relative change = 1.027e-03) 
Topic 1: india, can, even, s, us 
 Topic 2: one, just, government, news, like 
 Topic 3: people, indian, like, just, say 
 Topic 4: can, back, t, parents, s 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 46 (approx. per word bound = -7.063, relative change = 9.869e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 47 (approx. per word bound = -7.056, relative change = 1.094e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 48 (approx. per word bound = -7.046, relative change = 1.339e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 49 (approx. per word bound = -7.035, relative change = 1.611e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 50 (approx. per word bound = -7.026, relative change = 1.248e-03) 
Topic 1: india, can, even, s, us 
 Topic 2: one, government, news, just, like 
 Topic 3: indian, like, just, say, people 
 Topic 4: back, can, call, parents, got 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 51 (approx. per word bound = -7.019, relative change = 9.659e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 52 (approx. per word bound = -7.013, relative change = 9.425e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 53 (approx. per word bound = -7.005, relative change = 1.056e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 54 (approx. per word bound = -6.997, relative change = 1.134e-03) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 55 (approx. per word bound = -6.990, relative change = 9.974e-04) 
Topic 1: india, even, s, us, better 
 Topic 2: one, news, just, like, government 
 Topic 3: like, can, say, just, never 
 Topic 4: back, call, can, parents, got 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 56 (approx. per word bound = -6.984, relative change = 8.329e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 57 (approx. per word bound = -6.980, relative change = 6.872e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 58 (approx. per word bound = -6.975, relative change = 6.850e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 59 (approx. per word bound = -6.970, relative change = 6.469e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 60 (approx. per word bound = -6.966, relative change = 6.012e-04) 
Topic 1: india, s, even, better, get 
 Topic 2: news, just, like, indian, government 
 Topic 3: can, like, just, never, say 
 Topic 4: call, back, can, parents, shit 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 61 (approx. per word bound = -6.962, relative change = 5.360e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 62 (approx. per word bound = -6.959, relative change = 5.093e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 63 (approx. per word bound = -6.955, relative change = 5.399e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 64 (approx. per word bound = -6.952, relative change = 4.859e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 65 (approx. per word bound = -6.948, relative change = 4.753e-04) 
Topic 1: india, s, get, card, us 
 Topic 2: news, just, like, indian, government 
 Topic 3: can, like, just, never, even 
 Topic 4: call, can, back, parents, one 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 66 (approx. per word bound = -6.945, relative change = 5.034e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 67 (approx. per word bound = -6.941, relative change = 5.137e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 68 (approx. per word bound = -6.938, relative change = 4.838e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 69 (approx. per word bound = -6.935, relative change = 4.245e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 70 (approx. per word bound = -6.932, relative change = 4.632e-04) 
Topic 1: india, s, get, card, us 
 Topic 2: news, just, like, government, caste 
 Topic 3: can, like, just, never, even 
 Topic 4: call, can, parents, one, back 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 71 (approx. per word bound = -6.928, relative change = 5.799e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 72 (approx. per word bound = -6.923, relative change = 6.945e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 73 (approx. per word bound = -6.918, relative change = 7.319e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 74 (approx. per word bound = -6.914, relative change = 5.605e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 75 (approx. per word bound = -6.911, relative change = 5.074e-04) 
Topic 1: india, s, get, card, us 
 Topic 2: india, news, just, like, government 
 Topic 3: can, india, like, just, never 
 Topic 4: call, can, parents, one, back 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 76 (approx. per word bound = -6.908, relative change = 3.799e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 77 (approx. per word bound = -6.907, relative change = 2.031e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 78 (approx. per word bound = -6.905, relative change = 1.682e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 79 (approx. per word bound = -6.904, relative change = 1.886e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 80 (approx. per word bound = -6.902, relative change = 2.604e-04) 
Topic 1: s, india, get, card, us 
 Topic 2: india, just, news, like, government 
 Topic 3: can, india, like, just, never 
 Topic 4: can, call, parents, one, back 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 81 (approx. per word bound = -6.900, relative change = 3.397e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 82 (approx. per word bound = -6.898, relative change = 2.762e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 83 (approx. per word bound = -6.897, relative change = 2.231e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 84 (approx. per word bound = -6.895, relative change = 1.818e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 85 (approx. per word bound = -6.894, relative change = 1.848e-04) 
Topic 1: s, india, get, card, us 
 Topic 2: india, just, news, like, government 
 Topic 3: can, india, like, just, never 
 Topic 4: can, call, parents, one, back 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 86 (approx. per word bound = -6.893, relative change = 1.757e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 87 (approx. per word bound = -6.891, relative change = 1.906e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 88 (approx. per word bound = -6.890, relative change = 1.965e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 89 (approx. per word bound = -6.889, relative change = 1.568e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 90 (approx. per word bound = -6.888, relative change = 1.473e-04) 
Topic 1: s, india, get, card, us 
 Topic 2: india, just, like, news, government 
 Topic 3: can, india, like, just, never 
 Topic 4: can, parents, one, call, back 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 91 (approx. per word bound = -6.887, relative change = 1.255e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 92 (approx. per word bound = -6.887, relative change = 8.584e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 93 (approx. per word bound = -6.886, relative change = 7.593e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 94 (approx. per word bound = -6.886, relative change = 7.072e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 95 (approx. per word bound = -6.885, relative change = 7.955e-05) 
Topic 1: s, india, get, card, us 
 Topic 2: india, just, like, news, government 
 Topic 3: can, india, like, just, never 
 Topic 4: can, parents, one, call, back 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 96 (approx. per word bound = -6.884, relative change = 1.375e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 97 (approx. per word bound = -6.883, relative change = 1.360e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 98 (approx. per word bound = -6.883, relative change = 7.008e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 99 (approx. per word bound = -6.882, relative change = 9.048e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 100 (approx. per word bound = -6.881, relative change = 1.453e-04) 
Topic 1: s, india, card, us, people 
 Topic 2: india, just, like, news, government 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 101 (approx. per word bound = -6.880, relative change = 1.731e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 102 (approx. per word bound = -6.879, relative change = 1.541e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 103 (approx. per word bound = -6.878, relative change = 1.255e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 104 (approx. per word bound = -6.877, relative change = 1.122e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 105 (approx. per word bound = -6.877, relative change = 8.011e-05) 
Topic 1: s, india, card, us, people 
 Topic 2: india, just, like, news, government 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 106 (approx. per word bound = -6.876, relative change = 5.319e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 107 (approx. per word bound = -6.876, relative change = 5.218e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 108 (approx. per word bound = -6.875, relative change = 7.044e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 109 (approx. per word bound = -6.875, relative change = 6.538e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 110 (approx. per word bound = -6.874, relative change = 6.702e-05) 
Topic 1: s, india, card, us, people 
 Topic 2: india, just, like, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 111 (approx. per word bound = -6.874, relative change = 8.333e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 112 (approx. per word bound = -6.873, relative change = 9.021e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 113 (approx. per word bound = -6.872, relative change = 1.159e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 114 (approx. per word bound = -6.871, relative change = 1.568e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 115 (approx. per word bound = -6.871, relative change = 1.307e-04) 
Topic 1: s, india, card, us, people 
 Topic 2: india, just, like, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 116 (approx. per word bound = -6.870, relative change = 1.372e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 117 (approx. per word bound = -6.868, relative change = 1.636e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 118 (approx. per word bound = -6.868, relative change = 9.812e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 119 (approx. per word bound = -6.867, relative change = 7.263e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 120 (approx. per word bound = -6.867, relative change = 6.963e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, just, like, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 121 (approx. per word bound = -6.866, relative change = 7.625e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 122 (approx. per word bound = -6.866, relative change = 7.947e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 123 (approx. per word bound = -6.865, relative change = 8.312e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 124 (approx. per word bound = -6.865, relative change = 5.894e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 125 (approx. per word bound = -6.865, relative change = 1.637e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, just, like, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 126 (approx. per word bound = -6.865, relative change = 1.109e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 127 (approx. per word bound = -6.864, relative change = 1.628e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 128 (approx. per word bound = -6.864, relative change = 1.873e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 129 (approx. per word bound = -6.864, relative change = 1.975e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 130 (approx. per word bound = -6.864, relative change = 3.911e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, just, like, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, t 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 131 (approx. per word bound = -6.863, relative change = 1.011e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 132 (approx. per word bound = -6.863, relative change = 9.619e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 133 (approx. per word bound = -6.862, relative change = 3.100e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 134 (approx. per word bound = -6.862, relative change = 2.291e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 135 (approx. per word bound = -6.862, relative change = 4.780e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, just, like, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, t 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 136 (approx. per word bound = -6.861, relative change = 6.972e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 137 (approx. per word bound = -6.861, relative change = 9.729e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 138 (approx. per word bound = -6.860, relative change = 1.012e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 139 (approx. per word bound = -6.860, relative change = 5.970e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 140 (approx. per word bound = -6.859, relative change = 4.273e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, like, just, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, t 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 141 (approx. per word bound = -6.859, relative change = 4.370e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 142 (approx. per word bound = -6.859, relative change = 5.773e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 143 (approx. per word bound = -6.858, relative change = 4.472e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 144 (approx. per word bound = -6.858, relative change = 4.574e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 145 (approx. per word bound = -6.857, relative change = 7.797e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, like, just, news, caste 
 Topic 3: can, india, like, never, just 
 Topic 4: can, parents, one, back, t 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 146 (approx. per word bound = -6.857, relative change = 1.065e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 147 (approx. per word bound = -6.856, relative change = 1.092e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 148 (approx. per word bound = -6.855, relative change = 9.190e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 149 (approx. per word bound = -6.855, relative change = 7.969e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 150 (approx. per word bound = -6.855, relative change = 4.348e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, like, just, news, caste 
 Topic 3: can, india, like, just, never 
 Topic 4: can, parents, one, back, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 151 (approx. per word bound = -6.854, relative change = 2.378e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 152 (approx. per word bound = -6.854, relative change = 2.557e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 153 (approx. per word bound = -6.854, relative change = 6.621e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 154 (approx. per word bound = -6.852, relative change = 2.502e-04) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 155 (approx. per word bound = -6.851, relative change = 1.534e-04) 
Topic 1: india, s, card, us, people 
 Topic 2: india, like, just, news, caste 
 Topic 3: can, india, like, just, never 
 Topic 4: can, parents, back, one, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 156 (approx. per word bound = -6.851, relative change = 2.261e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 157 (approx. per word bound = -6.851, relative change = 2.051e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 158 (approx. per word bound = -6.850, relative change = 2.569e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 159 (approx. per word bound = -6.850, relative change = 2.887e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 160 (approx. per word bound = -6.850, relative change = 2.235e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, like, just, news, caste 
 Topic 3: can, india, like, just, never 
 Topic 4: can, parents, back, one, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 161 (approx. per word bound = -6.850, relative change = 1.490e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 162 (approx. per word bound = -6.850, relative change = 1.329e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 163 (approx. per word bound = -6.850, relative change = 1.553e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 164 (approx. per word bound = -6.850, relative change = 1.914e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 165 (approx. per word bound = -6.850, relative change = 1.934e-05) 
Topic 1: india, s, card, us, people 
 Topic 2: india, like, just, news, caste 
 Topic 3: can, india, like, just, never 
 Topic 4: can, parents, back, one, call 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 166 (approx. per word bound = -6.850, relative change = 1.030e-05) 
.......................................................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Model Converged 
labelTopics(model_indiaminus)
Topic 1 Top Words:
     Highest Prob: india, s, card, us, people, things, case 
     FREX: livpure, congress, force, mp, bharat, cancel, research 
     Lift: 100rs, 16,181-crore, 180rs, 4-hour, 5th, academic, add 
     Score: livpure, cancel, 20th, rameswaram, card, add, deceptive 
Topic 2 Top Words:
     Highest Prob: india, like, just, news, caste, indian, people 
     FREX: caste, class, sister, agoda, brahmin, gm, man 
     Lift: caste, @penpencildraw, 18m, 2019-21, 210m, 4k, 50-75ish 
     Score: brahmin, agoda, attention, pakistan, class, caste, number 
Topic 3 Top Words:
     Highest Prob: can, india, like, just, never, get, even 
     FREX: hard, non, vegan, indians, veg, diet, image 
     Lift: hard, image, _id, #hand, 0570d5348c7cb93e4b7ef69c5da4c82df0704bea, 1-2, 10-12 
     Score: vegan, non, veg, hard, diet, die, try 
Topic 4 Top Words:
     Highest Prob: can, parents, back, one, call, t, dad 
     FREX: m, asleep, clean, hai, dream, mum, prescribed 
     Lift: m, --, 12pm, 21yr, 26m, 29m, 90k 
     Score: asleep, clean, prescribed, dream, mum, m, coach 
plot(model_indiaminus, type = "summary", main = "r/India Top Topics (Polarity < 0)")

# get the words
topicnames_indiaminus <- labelTopics(model_indiaminus, n=4)$frex

# set up an empty vector
topiclabels_indiaminus <- rep(NA, k)

# set up a loop to go through the topics and collapse the words to a single name
for (i in 1:k){
  topiclabels_indiaminus[i] <- paste(topicnames_indiaminus[i,], collapse = "_")
}

# print the names
topiclabels_indiaminus
[1] "livpure_congress_force_mp" "caste_class_sister_agoda" 
[3] "hard_non_vegan_indians"    "m_asleep_clean_hai"       
# [1] "livpure_congress_force_mp" "caste_class_sister_agoda"  "hard_non_vegan_indians"   
# [4] "m_asleep_clean_hai"    
# zero model
model_indiazero <- stm(india_zero_stm,
               K = k,
               data = india_polzero,
               max.em.its = 1000,
               seed = 1234,
               init.type = "Spectral")
Beginning Spectral Initialization 
     Calculating the gram matrix...
     Finding anchor words...
    ....
     Recovering initialization...
    ...............
Initialization complete.
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 1 (approx. per word bound = -6.990) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 2 (approx. per word bound = -6.786, relative change = 2.915e-02) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 3 (approx. per word bound = -6.722, relative change = 9.429e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 4 (approx. per word bound = -6.691, relative change = 4.697e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 5 (approx. per word bound = -6.667, relative change = 3.452e-03) 
Topic 1: amp, s, people, order, report 
 Topic 2: since, someone, new, also, keep 
 Topic 3: indian, just, day, like, roads 
 Topic 4: india, can, one, times, congress 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 6 (approx. per word bound = -6.654, relative change = 1.990e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 7 (approx. per word bound = -6.646, relative change = 1.227e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 8 (approx. per word bound = -6.637, relative change = 1.310e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 9 (approx. per word bound = -6.630, relative change = 1.118e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 10 (approx. per word bound = -6.623, relative change = 9.976e-04) 
Topic 1: amp, s, people, order, report 
 Topic 2: since, someone, also, keep, much 
 Topic 3: indian, day, just, roads, project 
 Topic 4: india, can, one, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 11 (approx. per word bound = -6.613, relative change = 1.541e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 12 (approx. per word bound = -6.603, relative change = 1.509e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 13 (approx. per word bound = -6.594, relative change = 1.362e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 14 (approx. per word bound = -6.588, relative change = 8.811e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 15 (approx. per word bound = -6.582, relative change = 9.221e-04) 
Topic 1: amp, s, order, people, report 
 Topic 2: since, someone, also, keep, much 
 Topic 3: indian, day, roads, new, just 
 Topic 4: india, can, one, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 16 (approx. per word bound = -6.575, relative change = 1.097e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 17 (approx. per word bound = -6.569, relative change = 8.946e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 18 (approx. per word bound = -6.566, relative change = 5.483e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 19 (approx. per word bound = -6.562, relative change = 4.925e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 20 (approx. per word bound = -6.557, relative change = 7.506e-04) 
Topic 1: amp, s, order, people, report 
 Topic 2: since, someone, also, keep, use 
 Topic 3: indian, day, roads, new, just 
 Topic 4: india, can, one, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 21 (approx. per word bound = -6.553, relative change = 7.150e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 22 (approx. per word bound = -6.549, relative change = 5.552e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 23 (approx. per word bound = -6.544, relative change = 7.529e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 24 (approx. per word bound = -6.537, relative change = 1.142e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 25 (approx. per word bound = -6.531, relative change = 8.813e-04) 
Topic 1: amp, s, order, people, report 
 Topic 2: since, someone, also, keep, use 
 Topic 3: indian, day, roads, people, data 
 Topic 4: india, can, one, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 26 (approx. per word bound = -6.527, relative change = 6.388e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 27 (approx. per word bound = -6.523, relative change = 6.405e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 28 (approx. per word bound = -6.519, relative change = 5.906e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 29 (approx. per word bound = -6.515, relative change = 5.062e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 30 (approx. per word bound = -6.512, relative change = 5.554e-04) 
Topic 1: amp, s, order, report, m 
 Topic 2: since, someone, also, keep, inside 
 Topic 3: indian, day, roads, people, data 
 Topic 4: india, can, one, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 31 (approx. per word bound = -6.506, relative change = 8.470e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 32 (approx. per word bound = -6.500, relative change = 1.010e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 33 (approx. per word bound = -6.491, relative change = 1.353e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 34 (approx. per word bound = -6.481, relative change = 1.472e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 35 (approx. per word bound = -6.473, relative change = 1.278e-03) 
Topic 1: amp, s, india, order, indian 
 Topic 2: since, someone, also, keep, inside 
 Topic 3: day, roads, people, indian, data 
 Topic 4: india, can, one, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 36 (approx. per word bound = -6.465, relative change = 1.255e-03) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 37 (approx. per word bound = -6.459, relative change = 9.903e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 38 (approx. per word bound = -6.453, relative change = 7.819e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 39 (approx. per word bound = -6.450, relative change = 5.972e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 40 (approx. per word bound = -6.446, relative change = 5.984e-04) 
Topic 1: amp, india, s, indian, order 
 Topic 2: since, also, keep, someone, inside 
 Topic 3: day, roads, people, data, new 
 Topic 4: india, can, congress, news, old 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 41 (approx. per word bound = -6.442, relative change = 5.878e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 42 (approx. per word bound = -6.438, relative change = 5.798e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 43 (approx. per word bound = -6.433, relative change = 7.423e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 44 (approx. per word bound = -6.429, relative change = 7.001e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 45 (approx. per word bound = -6.426, relative change = 5.005e-04) 
Topic 1: amp, india, indian, s, report 
 Topic 2: since, order, also, keep, times 
 Topic 3: day, roads, people, s, data 
 Topic 4: can, congress, news, old, india 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 46 (approx. per word bound = -6.423, relative change = 3.739e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 47 (approx. per word bound = -6.421, relative change = 4.316e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 48 (approx. per word bound = -6.417, relative change = 5.792e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 49 (approx. per word bound = -6.412, relative change = 6.982e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 50 (approx. per word bound = -6.408, relative change = 7.124e-04) 
Topic 1: amp, india, indian, s, report 
 Topic 2: india, order, since, also, times 
 Topic 3: day, roads, s, people, data 
 Topic 4: can, congress, news, old, one 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 51 (approx. per word bound = -6.404, relative change = 6.054e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 52 (approx. per word bound = -6.400, relative change = 5.588e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 53 (approx. per word bound = -6.397, relative change = 4.826e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 54 (approx. per word bound = -6.394, relative change = 4.340e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 55 (approx. per word bound = -6.391, relative change = 4.968e-04) 
Topic 1: amp, india, indian, s, report 
 Topic 2: india, order, since, times, inside 
 Topic 3: day, roads, people, s, data 
 Topic 4: can, congress, news, old, one 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 56 (approx. per word bound = -6.390, relative change = 2.786e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 57 (approx. per word bound = -6.388, relative change = 1.742e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 58 (approx. per word bound = -6.387, relative change = 1.698e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 59 (approx. per word bound = -6.386, relative change = 2.074e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 60 (approx. per word bound = -6.384, relative change = 2.713e-04) 
Topic 1: amp, india, indian, s, report 
 Topic 2: india, order, since, times, inside 
 Topic 3: day, roads, people, s, data 
 Topic 4: can, congress, news, old, one 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 61 (approx. per word bound = -6.382, relative change = 2.865e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 62 (approx. per word bound = -6.381, relative change = 3.012e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 63 (approx. per word bound = -6.378, relative change = 3.353e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 64 (approx. per word bound = -6.377, relative change = 2.818e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 65 (approx. per word bound = -6.375, relative change = 1.770e-04) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: day, s, people, roads, data 
 Topic 4: can, s, india, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 66 (approx. per word bound = -6.374, relative change = 1.823e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 67 (approx. per word bound = -6.372, relative change = 3.371e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 68 (approx. per word bound = -6.369, relative change = 4.383e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 69 (approx. per word bound = -6.368, relative change = 1.860e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 70 (approx. per word bound = -6.368, relative change = 5.396e-05) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: s, day, people, roads, data 
 Topic 4: can, s, india, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 71 (approx. per word bound = -6.367, relative change = 6.327e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 72 (approx. per word bound = -6.367, relative change = 1.247e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 73 (approx. per word bound = -6.365, relative change = 1.854e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 74 (approx. per word bound = -6.365, relative change = 8.649e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 75 (approx. per word bound = -6.364, relative change = 9.022e-05) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: s, day, people, roads, data 
 Topic 4: can, s, india, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 76 (approx. per word bound = -6.364, relative change = 1.082e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 77 (approx. per word bound = -6.363, relative change = 6.443e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 78 (approx. per word bound = -6.363, relative change = 7.051e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 79 (approx. per word bound = -6.362, relative change = 1.206e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 80 (approx. per word bound = -6.361, relative change = 1.624e-04) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: s, day, people, roads, data 
 Topic 4: can, s, india, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 81 (approx. per word bound = -6.360, relative change = 1.439e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 82 (approx. per word bound = -6.360, relative change = 5.974e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 83 (approx. per word bound = -6.359, relative change = 2.939e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 84 (approx. per word bound = -6.359, relative change = 3.022e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 85 (approx. per word bound = -6.359, relative change = 5.217e-05) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: s, day, people, roads, data 
 Topic 4: can, s, india, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 86 (approx. per word bound = -6.358, relative change = 1.463e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 87 (approx. per word bound = -6.356, relative change = 2.522e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 88 (approx. per word bound = -6.355, relative change = 2.358e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 89 (approx. per word bound = -6.353, relative change = 2.743e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 90 (approx. per word bound = -6.352, relative change = 1.646e-04) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: s, day, people, roads, data 
 Topic 4: can, s, india, congress, news 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 91 (approx. per word bound = -6.352, relative change = 9.106e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 92 (approx. per word bound = -6.351, relative change = 6.618e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 93 (approx. per word bound = -6.351, relative change = 6.491e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 94 (approx. per word bound = -6.350, relative change = 4.607e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 95 (approx. per word bound = -6.350, relative change = 7.417e-05) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: day, s, roads, people, data 
 Topic 4: can, s, congress, news, india 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 96 (approx. per word bound = -6.349, relative change = 1.185e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 97 (approx. per word bound = -6.349, relative change = 5.350e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 98 (approx. per word bound = -6.348, relative change = 7.173e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 99 (approx. per word bound = -6.347, relative change = 1.782e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 100 (approx. per word bound = -6.345, relative change = 3.815e-04) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: day, s, roads, people, data 
 Topic 4: can, congress, news, india, s 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 101 (approx. per word bound = -6.341, relative change = 5.711e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 102 (approx. per word bound = -6.340, relative change = 1.469e-04) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 103 (approx. per word bound = -6.340, relative change = 4.614e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 104 (approx. per word bound = -6.340, relative change = 2.989e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 105 (approx. per word bound = -6.340, relative change = 3.211e-05) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: day, s, roads, people, data 
 Topic 4: can, india, congress, news, s 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 106 (approx. per word bound = -6.339, relative change = 4.360e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 107 (approx. per word bound = -6.339, relative change = 3.755e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 108 (approx. per word bound = -6.339, relative change = 3.208e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 109 (approx. per word bound = -6.338, relative change = 6.459e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 110 (approx. per word bound = -6.338, relative change = 8.584e-05) 
Topic 1: amp, india, indian, report, m 
 Topic 2: india, order, since, times, inside 
 Topic 3: s, day, roads, people, data 
 Topic 4: can, india, congress, news, s 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 111 (approx. per word bound = -6.338, relative change = 3.726e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 112 (approx. per word bound = -6.338, relative change = 1.961e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 113 (approx. per word bound = -6.337, relative change = 1.225e-05) 
.............................................................................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Model Converged 
labelTopics(model_indiazero)
Topic 1 Top Words:
     Highest Prob: amp, india, indian, report, m, s, like 
     FREX: report, entry, amp, format, mobile, money, two 
     Lift: report, #x200b, 15k, 17mn, 25k, 97a083a86f3a9108a5ea1ab4b11849ccca670022, access 
     Score: amp, sultans, tourist, visa, price, value, viewpoints 
Topic 2 Top Words:
     Highest Prob: india, order, since, times, inside, use, trapped 
     FREX: order, inside, use, back, decathlon, delivered, rescued 
     Lift: bribes, buddha, business, currency, glovebox, songs, spray 
     Score: delhi, order, decathlon, delivered, glovebox, spray, tejas 
Topic 3 Top Words:
     Highest Prob: s, day, roads, people, data, just, new 
     FREX: roads, data, every, many, took, avoid, go 
     Lift: _names, _star, #melodi, 12th, 14-jan-1969, 1925-2023, 1st 
     Score: roads, many, data, name, avoid, took, says 
Topic 4 Top Words:
     Highest Prob: india, can, congress, news, s, state, old 
     FREX: congress, news, state, coins, vigilance, book, city 
     Lift: 32728b62cdcb3d9488e7ce24c5ab9566, 9k, accepting, accidents, adapter, bhopal, bold 
     Score: congress, vigilance, commission, noise, navel, saree, wearing 
plot(model_indiazero, type = "summary", main = "r/India Top Topics (Polarity = 0)")

# get the words
topicnames_indiazero <- labelTopics(model_indiazero, n=4)$frex

# set up an empty vector
topiclabels_indiazero <- rep(NA, k)

# set up a loop to go through the topics and collapse the words to a single name
for (i in 1:k){
  topiclabels_indiazero[i] <- paste(topicnames_indiazero[i,], collapse = "_")
}

# print the names
topiclabels_indiazero
[1] "report_entry_amp_format"   "order_inside_use_back"    
[3] "roads_data_every_many"     "congress_news_state_coins"
# [1] "report_entry_amp_format"   "order_inside_use_back"     "roads_data_every_many"    
# [4] "congress_news_state_coins"
# plus model
model_indiaplus <- stm(india_plus_stm,
               K = k,
               data = india_polplus,
               max.em.its = 1000,
               seed = 1234,
               init.type = "Spectral")
Beginning Spectral Initialization 
     Calculating the gram matrix...
     Finding anchor words...
    ....
     Recovering initialization...
    .........................................................................
Initialization complete.
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 1 (approx. per word bound = -7.969) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 2 (approx. per word bound = -7.932, relative change = 4.671e-03) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 3 (approx. per word bound = -7.921, relative change = 1.351e-03) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 4 (approx. per word bound = -7.916, relative change = 6.505e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 5 (approx. per word bound = -7.912, relative change = 5.167e-04) 
Topic 1: can, like, know, get, just 
 Topic 2: people, good, see, going, well 
 Topic 3: india, want, s, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 6 (approx. per word bound = -7.907, relative change = 5.898e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 7 (approx. per word bound = -7.902, relative change = 6.836e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 8 (approx. per word bound = -7.896, relative change = 7.967e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 9 (approx. per word bound = -7.889, relative change = 8.112e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 10 (approx. per word bound = -7.883, relative change = 8.423e-04) 
Topic 1: can, like, get, just, know 
 Topic 2: people, good, see, going, well 
 Topic 3: india, want, s, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 11 (approx. per word bound = -7.876, relative change = 7.928e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 12 (approx. per word bound = -7.870, relative change = 7.412e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 13 (approx. per word bound = -7.865, relative change = 7.577e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 14 (approx. per word bound = -7.859, relative change = 7.572e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 15 (approx. per word bound = -7.853, relative change = 7.213e-04) 
Topic 1: can, just, amp, like, now 
 Topic 2: people, good, can, like, see 
 Topic 3: india, want, s, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 16 (approx. per word bound = -7.847, relative change = 7.105e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 17 (approx. per word bound = -7.842, relative change = 6.519e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 18 (approx. per word bound = -7.838, relative change = 5.806e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 19 (approx. per word bound = -7.833, relative change = 5.579e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 20 (approx. per word bound = -7.829, relative change = 5.512e-04) 
Topic 1: can, just, now, amp, one 
 Topic 2: people, can, good, like, know 
 Topic 3: india, want, s, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 21 (approx. per word bound = -7.825, relative change = 5.132e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 22 (approx. per word bound = -7.821, relative change = 5.541e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 23 (approx. per word bound = -7.816, relative change = 5.333e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 24 (approx. per word bound = -7.813, relative change = 4.620e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 25 (approx. per word bound = -7.809, relative change = 4.745e-04) 
Topic 1: can, amp, now, just, us 
 Topic 2: people, like, can, good, know 
 Topic 3: india, want, s, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 26 (approx. per word bound = -7.805, relative change = 4.752e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 27 (approx. per word bound = -7.802, relative change = 4.557e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 28 (approx. per word bound = -7.798, relative change = 4.457e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 29 (approx. per word bound = -7.795, relative change = 4.138e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 30 (approx. per word bound = -7.792, relative change = 3.697e-04) 
Topic 1: amp, us, just, now, can 
 Topic 2: people, like, can, good, know 
 Topic 3: india, want, new, job, s 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 31 (approx. per word bound = -7.790, relative change = 3.452e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 32 (approx. per word bound = -7.787, relative change = 3.375e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 33 (approx. per word bound = -7.784, relative change = 3.392e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 34 (approx. per word bound = -7.782, relative change = 3.439e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 35 (approx. per word bound = -7.779, relative change = 3.266e-04) 
Topic 1: amp, us, just, now, one 
 Topic 2: people, like, can, know, good 
 Topic 3: india, want, new, can, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 36 (approx. per word bound = -7.777, relative change = 3.185e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 37 (approx. per word bound = -7.774, relative change = 3.125e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 38 (approx. per word bound = -7.772, relative change = 3.154e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 39 (approx. per word bound = -7.769, relative change = 3.175e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 40 (approx. per word bound = -7.766, relative change = 3.758e-04) 
Topic 1: amp, us, now, just, one 
 Topic 2: people, like, know, can, get 
 Topic 3: india, want, can, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 41 (approx. per word bound = -7.763, relative change = 4.440e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 42 (approx. per word bound = -7.759, relative change = 4.694e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 43 (approx. per word bound = -7.755, relative change = 5.007e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 44 (approx. per word bound = -7.752, relative change = 4.480e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 45 (approx. per word bound = -7.749, relative change = 4.075e-04) 
Topic 1: amp, us, now, just, one 
 Topic 2: people, like, know, get, can 
 Topic 3: india, want, can, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 46 (approx. per word bound = -7.746, relative change = 3.347e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 47 (approx. per word bound = -7.744, relative change = 2.976e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 48 (approx. per word bound = -7.742, relative change = 2.926e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 49 (approx. per word bound = -7.739, relative change = 2.849e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 50 (approx. per word bound = -7.737, relative change = 2.768e-04) 
Topic 1: amp, us, one, now, just 
 Topic 2: people, like, know, get, can 
 Topic 3: india, can, want, new, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 51 (approx. per word bound = -7.735, relative change = 2.902e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 52 (approx. per word bound = -7.732, relative change = 3.634e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 53 (approx. per word bound = -7.729, relative change = 3.715e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 54 (approx. per word bound = -7.727, relative change = 3.311e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 55 (approx. per word bound = -7.724, relative change = 2.920e-04) 
Topic 1: amp, one, just, now, told 
 Topic 2: people, like, know, get, can 
 Topic 3: india, can, new, want, job 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 56 (approx. per word bound = -7.722, relative change = 3.009e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 57 (approx. per word bound = -7.720, relative change = 2.719e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 58 (approx. per word bound = -7.718, relative change = 2.407e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 59 (approx. per word bound = -7.716, relative change = 2.437e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 60 (approx. per word bound = -7.714, relative change = 2.542e-04) 
Topic 1: amp, one, just, now, told 
 Topic 2: people, like, know, get, can 
 Topic 3: india, can, new, job, need 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 61 (approx. per word bound = -7.712, relative change = 2.789e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 62 (approx. per word bound = -7.710, relative change = 2.807e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 63 (approx. per word bound = -7.708, relative change = 2.871e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 64 (approx. per word bound = -7.706, relative change = 2.702e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 65 (approx. per word bound = -7.704, relative change = 2.676e-04) 
Topic 1: amp, one, just, now, told 
 Topic 2: people, like, know, get, can 
 Topic 3: india, can, new, job, need 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 66 (approx. per word bound = -7.702, relative change = 2.559e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 67 (approx. per word bound = -7.700, relative change = 2.425e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 68 (approx. per word bound = -7.698, relative change = 2.153e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 69 (approx. per word bound = -7.697, relative change = 2.063e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 70 (approx. per word bound = -7.695, relative change = 2.147e-04) 
Topic 1: amp, one, just, now, told 
 Topic 2: people, like, know, get, can 
 Topic 3: india, can, job, online, need 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 71 (approx. per word bound = -7.693, relative change = 2.363e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 72 (approx. per word bound = -7.691, relative change = 2.449e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 73 (approx. per word bound = -7.689, relative change = 2.335e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 74 (approx. per word bound = -7.688, relative change = 2.291e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 75 (approx. per word bound = -7.686, relative change = 2.107e-04) 
Topic 1: amp, one, now, just, told 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, job, online, need 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 76 (approx. per word bound = -7.684, relative change = 2.042e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 77 (approx. per word bound = -7.683, relative change = 2.187e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 78 (approx. per word bound = -7.681, relative change = 2.441e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 79 (approx. per word bound = -7.679, relative change = 2.651e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 80 (approx. per word bound = -7.677, relative change = 2.409e-04) 
Topic 1: amp, one, just, now, told 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 81 (approx. per word bound = -7.675, relative change = 2.153e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 82 (approx. per word bound = -7.674, relative change = 2.076e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 83 (approx. per word bound = -7.672, relative change = 2.139e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 84 (approx. per word bound = -7.670, relative change = 2.220e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 85 (approx. per word bound = -7.669, relative change = 2.210e-04) 
Topic 1: amp, one, now, just, told 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: help, please, really, way, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 86 (approx. per word bound = -7.667, relative change = 2.113e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 87 (approx. per word bound = -7.665, relative change = 2.213e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 88 (approx. per word bound = -7.664, relative change = 2.339e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 89 (approx. per word bound = -7.662, relative change = 2.336e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 90 (approx. per word bound = -7.660, relative change = 2.068e-04) 
Topic 1: amp, one, now, just, told 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: help, please, really, find, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 91 (approx. per word bound = -7.659, relative change = 1.785e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 92 (approx. per word bound = -7.658, relative change = 1.587e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 93 (approx. per word bound = -7.657, relative change = 1.405e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 94 (approx. per word bound = -7.656, relative change = 1.419e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 95 (approx. per word bound = -7.654, relative change = 1.410e-04) 
Topic 1: amp, one, just, now, told 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: help, please, really, find, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 96 (approx. per word bound = -7.653, relative change = 1.488e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 97 (approx. per word bound = -7.652, relative change = 1.623e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 98 (approx. per word bound = -7.651, relative change = 1.823e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 99 (approx. per word bound = -7.649, relative change = 1.916e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 100 (approx. per word bound = -7.648, relative change = 1.867e-04) 
Topic 1: amp, one, just, now, can 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: help, please, really, find, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 101 (approx. per word bound = -7.646, relative change = 1.840e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 102 (approx. per word bound = -7.645, relative change = 1.797e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 103 (approx. per word bound = -7.644, relative change = 1.687e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 104 (approx. per word bound = -7.643, relative change = 1.472e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 105 (approx. per word bound = -7.642, relative change = 1.346e-04) 
Topic 1: amp, one, just, can, now 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: please, help, really, find, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 106 (approx. per word bound = -7.641, relative change = 1.379e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 107 (approx. per word bound = -7.639, relative change = 1.402e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 108 (approx. per word bound = -7.638, relative change = 1.628e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 109 (approx. per word bound = -7.637, relative change = 2.160e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 110 (approx. per word bound = -7.634, relative change = 2.919e-04) 
Topic 1: amp, one, just, can, told 
 Topic 2: people, like, know, can, just 
 Topic 3: india, can, online, need, bank 
 Topic 4: please, help, really, find, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 111 (approx. per word bound = -7.632, relative change = 3.555e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 112 (approx. per word bound = -7.629, relative change = 3.043e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 113 (approx. per word bound = -7.628, relative change = 2.284e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 114 (approx. per word bound = -7.626, relative change = 2.201e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 115 (approx. per word bound = -7.624, relative change = 2.510e-04) 
Topic 1: amp, india, one, can, just 
 Topic 2: people, like, know, can, get 
 Topic 3: india, can, online, bank, need 
 Topic 4: please, help, find, really, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 116 (approx. per word bound = -7.622, relative change = 2.451e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 117 (approx. per word bound = -7.621, relative change = 2.026e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 118 (approx. per word bound = -7.619, relative change = 1.906e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 119 (approx. per word bound = -7.617, relative change = 2.141e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 120 (approx. per word bound = -7.616, relative change = 2.131e-04) 
Topic 1: amp, india, one, just, can 
 Topic 2: people, like, india, know, can 
 Topic 3: india, can, online, bank, need 
 Topic 4: please, help, find, really, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 121 (approx. per word bound = -7.614, relative change = 1.830e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 122 (approx. per word bound = -7.613, relative change = 1.829e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 123 (approx. per word bound = -7.612, relative change = 1.764e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 124 (approx. per word bound = -7.610, relative change = 1.729e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 125 (approx. per word bound = -7.609, relative change = 1.835e-04) 
Topic 1: amp, india, one, can, just 
 Topic 2: people, like, india, know, can 
 Topic 3: india, can, online, bank, experience 
 Topic 4: please, help, find, university, really 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 126 (approx. per word bound = -7.608, relative change = 1.611e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 127 (approx. per word bound = -7.607, relative change = 1.407e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 128 (approx. per word bound = -7.606, relative change = 1.335e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 129 (approx. per word bound = -7.605, relative change = 1.503e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 130 (approx. per word bound = -7.603, relative change = 1.611e-04) 
Topic 1: amp, india, one, can, just 
 Topic 2: people, like, india, know, can 
 Topic 3: india, can, online, bank, experience 
 Topic 4: please, help, find, university, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 131 (approx. per word bound = -7.602, relative change = 1.314e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 132 (approx. per word bound = -7.601, relative change = 1.362e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 133 (approx. per word bound = -7.600, relative change = 1.445e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 134 (approx. per word bound = -7.599, relative change = 1.831e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 135 (approx. per word bound = -7.598, relative change = 1.601e-04) 
Topic 1: amp, india, one, can, just 
 Topic 2: people, like, india, know, can 
 Topic 3: india, can, online, bank, amp 
 Topic 4: please, help, find, university, use 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 136 (approx. per word bound = -7.597, relative change = 1.052e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 137 (approx. per word bound = -7.596, relative change = 1.176e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 138 (approx. per word bound = -7.595, relative change = 1.567e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 139 (approx. per word bound = -7.593, relative change = 1.814e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 140 (approx. per word bound = -7.592, relative change = 1.652e-04) 
Topic 1: amp, india, one, can, just 
 Topic 2: people, like, know, can, india 
 Topic 3: can, india, online, bank, help 
 Topic 4: please, help, find, university, india 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 141 (approx. per word bound = -7.591, relative change = 1.311e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 142 (approx. per word bound = -7.590, relative change = 1.369e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 143 (approx. per word bound = -7.589, relative change = 1.589e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 144 (approx. per word bound = -7.588, relative change = 1.701e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 145 (approx. per word bound = -7.587, relative change = 1.239e-04) 
Topic 1: amp, india, one, can, just 
 Topic 2: like, people, can, know, india 
 Topic 3: can, india, online, bank, help 
 Topic 4: please, help, find, india, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 146 (approx. per word bound = -7.586, relative change = 1.016e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 147 (approx. per word bound = -7.585, relative change = 1.001e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 148 (approx. per word bound = -7.584, relative change = 1.237e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 149 (approx. per word bound = -7.583, relative change = 1.441e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 150 (approx. per word bound = -7.582, relative change = 1.217e-04) 
Topic 1: amp, india, one, people, just 
 Topic 2: like, people, india, can, know 
 Topic 3: can, india, online, bank, help 
 Topic 4: please, help, find, india, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 151 (approx. per word bound = -7.581, relative change = 1.050e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 152 (approx. per word bound = -7.581, relative change = 9.527e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 153 (approx. per word bound = -7.580, relative change = 7.686e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 154 (approx. per word bound = -7.579, relative change = 8.643e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 155 (approx. per word bound = -7.579, relative change = 1.069e-04) 
Topic 1: amp, india, one, people, just 
 Topic 2: like, people, india, just, know 
 Topic 3: india, can, bank, online, help 
 Topic 4: please, help, find, india, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 156 (approx. per word bound = -7.578, relative change = 9.917e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 157 (approx. per word bound = -7.577, relative change = 9.213e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 158 (approx. per word bound = -7.576, relative change = 9.483e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 159 (approx. per word bound = -7.576, relative change = 9.270e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 160 (approx. per word bound = -7.575, relative change = 9.060e-05) 
Topic 1: amp, india, one, people, just 
 Topic 2: like, people, india, just, know 
 Topic 3: india, can, bank, online, help 
 Topic 4: please, help, india, find, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 161 (approx. per word bound = -7.574, relative change = 9.105e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 162 (approx. per word bound = -7.574, relative change = 9.396e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 163 (approx. per word bound = -7.573, relative change = 1.306e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 164 (approx. per word bound = -7.571, relative change = 1.859e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 165 (approx. per word bound = -7.570, relative change = 1.088e-04) 
Topic 1: amp, india, one, people, just 
 Topic 2: like, people, india, just, want 
 Topic 3: india, can, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 166 (approx. per word bound = -7.570, relative change = 8.722e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 167 (approx. per word bound = -7.569, relative change = 8.311e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 168 (approx. per word bound = -7.568, relative change = 9.108e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 169 (approx. per word bound = -7.567, relative change = 1.146e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 170 (approx. per word bound = -7.567, relative change = 1.063e-04) 
Topic 1: amp, india, one, people, just 
 Topic 2: people, like, india, just, want 
 Topic 3: india, can, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 171 (approx. per word bound = -7.566, relative change = 6.487e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 172 (approx. per word bound = -7.566, relative change = 6.270e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 173 (approx. per word bound = -7.565, relative change = 9.437e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 174 (approx. per word bound = -7.564, relative change = 9.697e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 175 (approx. per word bound = -7.564, relative change = 5.966e-05) 
Topic 1: amp, india, one, people, just 
 Topic 2: people, india, like, just, want 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 176 (approx. per word bound = -7.563, relative change = 5.195e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 177 (approx. per word bound = -7.563, relative change = 5.274e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 178 (approx. per word bound = -7.563, relative change = 6.948e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 179 (approx. per word bound = -7.562, relative change = 7.652e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 180 (approx. per word bound = -7.561, relative change = 7.880e-05) 
Topic 1: amp, india, one, people, just 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 181 (approx. per word bound = -7.561, relative change = 5.650e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 182 (approx. per word bound = -7.560, relative change = 6.241e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 183 (approx. per word bound = -7.560, relative change = 7.070e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 184 (approx. per word bound = -7.559, relative change = 8.115e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 185 (approx. per word bound = -7.559, relative change = 8.491e-05) 
Topic 1: amp, india, one, people, just 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 186 (approx. per word bound = -7.558, relative change = 7.864e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 187 (approx. per word bound = -7.558, relative change = 6.385e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 188 (approx. per word bound = -7.557, relative change = 6.047e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 189 (approx. per word bound = -7.557, relative change = 7.160e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 190 (approx. per word bound = -7.556, relative change = 9.298e-05) 
Topic 1: amp, india, one, people, just 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 191 (approx. per word bound = -7.555, relative change = 7.792e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 192 (approx. per word bound = -7.555, relative change = 8.104e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 193 (approx. per word bound = -7.554, relative change = 9.258e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 194 (approx. per word bound = -7.553, relative change = 7.608e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 195 (approx. per word bound = -7.553, relative change = 5.324e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 196 (approx. per word bound = -7.553, relative change = 3.788e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 197 (approx. per word bound = -7.552, relative change = 3.359e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 198 (approx. per word bound = -7.552, relative change = 3.555e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 199 (approx. per word bound = -7.552, relative change = 3.286e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 200 (approx. per word bound = -7.552, relative change = 3.238e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 201 (approx. per word bound = -7.551, relative change = 3.366e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 202 (approx. per word bound = -7.551, relative change = 3.328e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 203 (approx. per word bound = -7.551, relative change = 3.322e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 204 (approx. per word bound = -7.551, relative change = 3.281e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 205 (approx. per word bound = -7.550, relative change = 3.481e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 206 (approx. per word bound = -7.550, relative change = 3.224e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 207 (approx. per word bound = -7.550, relative change = 3.715e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 208 (approx. per word bound = -7.550, relative change = 4.243e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 209 (approx. per word bound = -7.549, relative change = 4.622e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 210 (approx. per word bound = -7.549, relative change = 4.991e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 211 (approx. per word bound = -7.549, relative change = 4.612e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 212 (approx. per word bound = -7.548, relative change = 4.340e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 213 (approx. per word bound = -7.548, relative change = 4.719e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 214 (approx. per word bound = -7.547, relative change = 4.722e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 215 (approx. per word bound = -7.547, relative change = 5.232e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, help, india, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 216 (approx. per word bound = -7.547, relative change = 5.709e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 217 (approx. per word bound = -7.546, relative change = 6.705e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 218 (approx. per word bound = -7.545, relative change = 9.625e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 219 (approx. per word bound = -7.545, relative change = 1.018e-04) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 220 (approx. per word bound = -7.544, relative change = 9.854e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 221 (approx. per word bound = -7.543, relative change = 8.423e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 222 (approx. per word bound = -7.543, relative change = 5.207e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 223 (approx. per word bound = -7.543, relative change = 3.352e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 224 (approx. per word bound = -7.542, relative change = 2.901e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 225 (approx. per word bound = -7.542, relative change = 2.882e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 226 (approx. per word bound = -7.542, relative change = 3.054e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 227 (approx. per word bound = -7.542, relative change = 3.000e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 228 (approx. per word bound = -7.542, relative change = 2.658e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 229 (approx. per word bound = -7.541, relative change = 2.459e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 230 (approx. per word bound = -7.541, relative change = 2.604e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 231 (approx. per word bound = -7.541, relative change = 3.078e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 232 (approx. per word bound = -7.541, relative change = 3.417e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 233 (approx. per word bound = -7.540, relative change = 3.400e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 234 (approx. per word bound = -7.540, relative change = 2.641e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 235 (approx. per word bound = -7.540, relative change = 2.222e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 236 (approx. per word bound = -7.540, relative change = 3.372e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 237 (approx. per word bound = -7.539, relative change = 4.105e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 238 (approx. per word bound = -7.539, relative change = 2.739e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 239 (approx. per word bound = -7.539, relative change = 2.094e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 240 (approx. per word bound = -7.539, relative change = 2.678e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 241 (approx. per word bound = -7.539, relative change = 2.555e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 242 (approx. per word bound = -7.538, relative change = 2.767e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 243 (approx. per word bound = -7.538, relative change = 4.097e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 244 (approx. per word bound = -7.538, relative change = 3.908e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 245 (approx. per word bound = -7.538, relative change = 2.494e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 246 (approx. per word bound = -7.538, relative change = 2.048e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 247 (approx. per word bound = -7.537, relative change = 2.649e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 248 (approx. per word bound = -7.537, relative change = 3.746e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 249 (approx. per word bound = -7.537, relative change = 3.047e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 250 (approx. per word bound = -7.537, relative change = 2.665e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 251 (approx. per word bound = -7.536, relative change = 2.829e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 252 (approx. per word bound = -7.536, relative change = 3.251e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 253 (approx. per word bound = -7.536, relative change = 4.339e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 254 (approx. per word bound = -7.536, relative change = 3.552e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 255 (approx. per word bound = -7.535, relative change = 2.241e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 256 (approx. per word bound = -7.535, relative change = 1.996e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 257 (approx. per word bound = -7.535, relative change = 1.957e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 258 (approx. per word bound = -7.535, relative change = 1.848e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 259 (approx. per word bound = -7.535, relative change = 1.569e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 260 (approx. per word bound = -7.535, relative change = 1.528e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 261 (approx. per word bound = -7.535, relative change = 1.489e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 262 (approx. per word bound = -7.535, relative change = 1.489e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 263 (approx. per word bound = -7.534, relative change = 1.457e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 264 (approx. per word bound = -7.534, relative change = 1.467e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 265 (approx. per word bound = -7.534, relative change = 1.504e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, university, like 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 266 (approx. per word bound = -7.534, relative change = 1.941e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 267 (approx. per word bound = -7.534, relative change = 2.537e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 268 (approx. per word bound = -7.534, relative change = 2.154e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 269 (approx. per word bound = -7.534, relative change = 1.992e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 270 (approx. per word bound = -7.533, relative change = 1.678e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 271 (approx. per word bound = -7.533, relative change = 1.751e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 272 (approx. per word bound = -7.533, relative change = 2.085e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 273 (approx. per word bound = -7.533, relative change = 2.449e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 274 (approx. per word bound = -7.533, relative change = 3.278e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 275 (approx. per word bound = -7.532, relative change = 4.732e-05) 
Topic 1: amp, india, people, one, just 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 276 (approx. per word bound = -7.532, relative change = 6.765e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 277 (approx. per word bound = -7.531, relative change = 6.438e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 278 (approx. per word bound = -7.531, relative change = 5.159e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 279 (approx. per word bound = -7.531, relative change = 3.105e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 280 (approx. per word bound = -7.530, relative change = 3.106e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 281 (approx. per word bound = -7.530, relative change = 3.532e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 282 (approx. per word bound = -7.530, relative change = 3.295e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 283 (approx. per word bound = -7.530, relative change = 3.032e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 284 (approx. per word bound = -7.529, relative change = 3.479e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 285 (approx. per word bound = -7.529, relative change = 3.507e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, university 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 286 (approx. per word bound = -7.529, relative change = 2.444e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 287 (approx. per word bound = -7.529, relative change = 2.781e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 288 (approx. per word bound = -7.529, relative change = 3.934e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 289 (approx. per word bound = -7.528, relative change = 4.122e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 290 (approx. per word bound = -7.528, relative change = 3.868e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, can 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 291 (approx. per word bound = -7.528, relative change = 5.493e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 292 (approx. per word bound = -7.527, relative change = 6.843e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 293 (approx. per word bound = -7.527, relative change = 4.678e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 294 (approx. per word bound = -7.526, relative change = 2.633e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 295 (approx. per word bound = -7.526, relative change = 2.568e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 296 (approx. per word bound = -7.526, relative change = 2.825e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 297 (approx. per word bound = -7.526, relative change = 2.846e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 298 (approx. per word bound = -7.526, relative change = 2.681e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 299 (approx. per word bound = -7.525, relative change = 2.951e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 300 (approx. per word bound = -7.525, relative change = 2.906e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 301 (approx. per word bound = -7.525, relative change = 2.958e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 302 (approx. per word bound = -7.525, relative change = 3.442e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 303 (approx. per word bound = -7.524, relative change = 3.198e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 304 (approx. per word bound = -7.524, relative change = 4.557e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 305 (approx. per word bound = -7.524, relative change = 6.603e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 306 (approx. per word bound = -7.523, relative change = 3.753e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 307 (approx. per word bound = -7.523, relative change = 1.645e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 308 (approx. per word bound = -7.523, relative change = 1.643e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 309 (approx. per word bound = -7.523, relative change = 2.255e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 310 (approx. per word bound = -7.523, relative change = 2.583e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, help 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 311 (approx. per word bound = -7.523, relative change = 2.635e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 312 (approx. per word bound = -7.522, relative change = 3.170e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 313 (approx. per word bound = -7.522, relative change = 2.705e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 314 (approx. per word bound = -7.522, relative change = 1.350e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 315 (approx. per word bound = -7.522, relative change = 1.495e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, get 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 316 (approx. per word bound = -7.522, relative change = 2.499e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 317 (approx. per word bound = -7.521, relative change = 3.041e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 318 (approx. per word bound = -7.521, relative change = 3.049e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 319 (approx. per word bound = -7.521, relative change = 2.984e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 320 (approx. per word bound = -7.521, relative change = 2.931e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, get 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 321 (approx. per word bound = -7.521, relative change = 2.782e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 322 (approx. per word bound = -7.520, relative change = 2.789e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 323 (approx. per word bound = -7.520, relative change = 4.307e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 324 (approx. per word bound = -7.520, relative change = 4.456e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 325 (approx. per word bound = -7.519, relative change = 2.774e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, get 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 326 (approx. per word bound = -7.519, relative change = 2.094e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 327 (approx. per word bound = -7.519, relative change = 2.212e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 328 (approx. per word bound = -7.519, relative change = 1.735e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 329 (approx. per word bound = -7.519, relative change = 1.485e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 330 (approx. per word bound = -7.519, relative change = 2.238e-05) 
Topic 1: amp, india, people, one, like 
 Topic 2: people, india, like, just, know 
 Topic 3: can, india, bank, online, get 
 Topic 4: please, india, help, like, can 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 331 (approx. per word bound = -7.519, relative change = 2.444e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Completing Iteration 332 (approx. per word bound = -7.518, relative change = 1.123e-05) 
.....................................................................................................
Completed E-Step (0 seconds). 
Completed M-Step. 
Model Converged 
labelTopics(model_indiaplus)
Topic 1 Top Words:
     Highest Prob: amp, india, people, one, like, can, just 
     FREX: ama, auto, lk, named, nani, webp, indigo 
     Lift: _a, _abhinandan, _abijit, _am, _dhruv, _educator, _from 
     Score: ama, lk, nani, named, subsidies, cr, finals 
Topic 2 Top Words:
     Highest Prob: people, india, like, just, know, can, get 
     FREX: passport, coins, u, problems, nice, ve, non 
     Lift: 1-2, 5th, activities, adopted, adoption, agra, aim 
     Score: coins, u, wife, feelings, room, godown, representation 
Topic 3 Top Words:
     Highest Prob: can, india, bank, online, help, get, account 
     FREX: project, lakh, refund, zomato, gol, payments, seeking 
     Lift: achieve, agent, agreement, astronaut, baby, bare, born 
     Score: zomato, payments, lakh, gol, tu, academic, tashan 
Topic 4 Top Words:
     Highest Prob: please, india, help, like, can, university, know 
     FREX: certificate, protein, therapy, tickets, broadcasting, songs, university 
     Lift: 13-place, bajpayee, bunny, censorship, clinic, didnt, dishwasher 
     Score: protein, broadcasting, university, flights, forensics, universities, pet 
plot(model_indiaplus, type = "summary", main = "r/India Top Topics (Polarity > 0)")

# get the words
topicnames_indiaplus <- labelTopics(model_indiaplus, n=4)$frex

# set up an empty vector
topiclabels_indiaplus <- rep(NA, k)

# set up a loop to go through the topics and collapse the words to a single name
for (i in 1:k){
  topiclabels_indiaplus[i] <- paste(topicnames_indiaplus[i,], collapse = "_")
}

# print the names
topiclabels_indiaplus
[1] "ama_auto_lk_named"                   "passport_coins_u_problems"          
[3] "project_lakh_refund_zomato"          "certificate_protein_therapy_tickets"
# [1] "ama_auto_lk_named"                   "passport_coins_u_problems"          
# [3] "project_lakh_refund_zomato"          "certificate_protein_therapy_tickets"

In the bigger subreddit’s model for negatively coded posts, ‘caste’ is frequently mentioned, implying disapproval of the caste system. The neutral and positive models include more general terms, such as ‘news’, ‘people’, and ‘university.’ Other than these differences, the topic models seem pretty similar even though they differ by polarity. This result complies with the overarching purpose of the subreddit, which has a large scope not limited to religious discussions unlike r/HindutvaRises.

Conclusion

Overall, these results offer partial support to the hypotheses. The text analysis methods used showcase a discussion of other religions such as Islam and Sikhism, in a negative light more often than not in the smaller subreddit. Hindu rituals and certain extremist ideas (e.g. ‘akhand bharat’ and ‘sanatan dharma’) emerge as clear topics in the smaller subreddit of r/HindutvaRises and are talked about in a more positive manner. At the same time, sentiment analysis reveal that most of the posts scraped from this subreddit were found to have neutral polarity to a greater extent than r/India, contradicting the third hypothesis of the larger subreddit being more neutral in overall sentiment than the smaller one. Thus, the smaller subreddit not as extreme as expected. r/India includes more general discussions of politics and other less extreme civilian matters. This bigger subreddit also has more posts that have a positive polarity.

Some limitations of this project is the limited multilingual inclusion, which could affect the result of the text analysis. A perusal of the posts in these datasets indicate that a substantial amount of the text is in Hindi as transliterated to English, so existing English-based models may not pick up on some stopwords. Also, I was unable to choose a more meaningful K-value in the structural topic modeling analysis due to issues running the code. In terms of the data, it is cross-sectional in nature and only covers a month of posts. It was also not collected at a particularly relevant time period, so it may not be very representative of the subreddits. Lastly, only two subreddits out of several were analyzed, which may lead to low generalizability.

Nevertheless, this research ventures into a lesser-explored social media in the Indian context, paving the path for more in-depth and extensive insights. Future research could compare more subreddits over a relevant time period such as during election seasons. In the structural modeling section, more experimentation with k-values could be done to find an optimal number of topics for each subreddit.

References

Chakraborty, S., Pal, J., Chandra, P., & Romero, D. M. (2018a). Political Tweets and Mainstream News Impact in India: A Mixed Methods Investigation into Political Outreach. Proceedings of the 1st ACM SIGCAS Conference on Computing and Sustainable Societies. https://doi.org/10.1145/3209811.3209825.

Manuvie, R., & Chatterjee, S. (2023). Automated Sentiment and Hate Speech Analysis of Facebook Data by Employing Multilingual Transformer Models. Computation and Language, 1–11. https://doi.org/https://doi.org/10.48550/arXiv.2301.13668.

M. N., P. (2023, February 28). India’s YouTube Vigilante is Wanted for Murder. Wired. https://www.wired.com/story/indias-youtube-vigilante-monu-manesar-murder/.

Saraswat, R. (2022, January 25). Out of Sight: How Reddit became a “safe space” for hate in India. TheQuint. https://www.thequint.com/neon/web-culture/out-of-sight-how-reddit-became-a-safe-space-for-hate.

Siyech, M. S. (2021). An Introduction to Right-Wing Extremism in India. New England Journal of Public Policy, 33(2). https://scholarworks.umb.edu/cgi/viewcontent.cgi?article=1809&context=nejpp.

# save(hindutvacomments, file = "hindutvacomments.rda")
# save(df_nrc, file = "hindutvacomments_sentiments.rda")